We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45af4ee commit 8ce7052Copy full SHA for 8ce7052
examples/nginx-proxy-manager/docker-compose.yml
@@ -5,15 +5,16 @@ services:
5
container_name: npm
6
environment:
7
- TZ=Europe/Berlin
8
+ - PUID=1000 # see https://nginxproxymanager.com/advanced-config/
9
+ - PGID=1000 # see https://nginxproxymanager.com/advanced-config/
10
hostname: npm
- user: 0:1000
11
#networks:
12
# - npm_proxy
13
image: jc21/nginx-proxy-manager:latest
14
ports:
- - 443:443/tcp # HTTPS
15
- - 81:81/tcp # MGMT UI
16
- 80:80/tcp # HTTP
+ - 443:443/tcp # HTTPS
17
+ - 81:81/tcp # MGMT UI, do not expose publicly
18
restart: unless-stopped
19
healthcheck:
20
test: ["CMD", "/bin/check-health"]
0 commit comments