fix(npmplus): set user to root to bind port 80

This commit is contained in:
2025-12-28 05:35:01 +01:00
parent 546baf0981
commit e54b88d48d
2 changed files with 2 additions and 2 deletions

View File

View File

@@ -35,8 +35,8 @@ services:
# - "ACME_KEY_TYPE=rsa" # which key type to use ecdsa or rsa, default and recommended: ecdsa
# - "ACME_SERVER_TLS_VERIFY=false" # enables checking if ACME_SERVER has a valid TLS cert, default and recommended true
# - "CUSTOM_OCSP_STAPLING=true" # enables ocsp stapling for custom certs, default false, I recommend enabling this if your custom certs support it
- "PUID=1000" # set user id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root)
- "PGID=1000" # set group id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root), requires non-zero PUID
- "PUID=0" # set user id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root)
- "PGID=0" # set group id, needs to be a number greater or equal to 99, or equal to 0, default 0 (root), requires non-zero PUID
# - "NPM_PORT=82" # Port the NPM UI should be bound to, default 81, change this if you want to run multiple npm instances in network mode host
# - "GOA_PORT=92" # Port for goaccess, default 91, change this if you want to run multiple npm with goaccess instances in network mode host
# - "IPV4_BINDING=127.0.0.1" # IPv4 address to bind, defaults to all