mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
00d932dd0c
remove network definition
29 lines
672 B
YAML
29 lines
672 B
YAML
version: "3"
|
|
|
|
services:
|
|
npm:
|
|
container_name: npm
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
hostname: npm
|
|
user: 0:1000
|
|
#networks:
|
|
# - npm_proxy
|
|
image: jc21/nginx-proxy-manager:latest
|
|
ports:
|
|
- 443:443/tcp # HTTPS
|
|
- 81:81/tcp # MGMT UI
|
|
- 80:80/tcp # HTTP
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "/bin/check-health"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx-proxy-manager/data:/data
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nginx-proxy-manager/letsencrypt:/etc/letsencrypt
|
|
|
|
#networks:
|
|
# npm_proxy:
|
|
# external: true
|