You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
609 B
YAML
23 lines
609 B
YAML
2 years ago
|
# docker-compose.yml
|
||
|
# Docker Hub: https://hub.docker.com/r/jlesage/nginx-proxy-manager
|
||
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
||
|
# Default credentials are admin@example.com \ changeme
|
||
|
|
||
|
networks:
|
||
|
<NETWORK_NAME>:
|
||
|
external: true
|
||
|
|
||
|
services:
|
||
|
nginx-proxy-manager:
|
||
|
container_name: nginx-proxy-manager
|
||
|
image: jc21/nginx-proxy-manager:<VERSION_TAG>
|
||
|
networks:
|
||
|
- <NETWORK_NAME>
|
||
|
ports:
|
||
|
- "80:80" # HTTP Port
|
||
|
- "81:81" # WebUI Port
|
||
|
- "443:443" # HTTPS Port
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- ./data:/data
|
||
|
- ./letsencrypt:/etc/letsencrypt
|