27 lines
501 B
YAML
27 lines
501 B
YAML
services:
|
|
app:
|
|
container_name: nginx-proxy-manager
|
|
image: jc21/nginx-proxy-manager:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
TZ: "Europe/Madrid"
|
|
ports:
|
|
- "80:80" # HTTP
|
|
- "81:81" # Admin UI
|
|
- "443:443" # HTTPS
|
|
volumes:
|
|
- npm_data:/data
|
|
- npm_letsencrypt:/etc/letsencrypt
|
|
networks:
|
|
- proxy
|
|
|
|
volumes:
|
|
npm_data:
|
|
name: npm_data
|
|
npm_letsencrypt:
|
|
name: npm_letsencrypt
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|