version: "3"
|
|
services:
|
|
app:
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
restart: unless-stopped
|
|
container_name: npm
|
|
ports:
|
|
# These ports are in format <host-port>:<container-port>
|
|
- '80:80' # Public HTTP Port
|
|
- '443:443' # Public HTTPS Port
|
|
- '83:81' # Admin Web Port
|
|
# Add any other Stream port you want to expose
|
|
# - '21:21' # FTP
|
|
volumes:
|
|
- ./nuevo/data:/data
|
|
- ./nuevo/letsencrypt:/etc/letsencrypt
|
|
networks:
|
|
- default
|
|
- npm
|
|
web:
|
|
image: nginx
|
|
restart: always
|
|
networks:
|
|
- default
|
|
- npm
|
|
|
|
networks:
|
|
npm:
|
|
driver: bridge
|
|
|