35 lines
623 B
YAML
35 lines
623 B
YAML
---
|
|
|
|
# NGINX Proxy Manager
|
|
# Reverse proxy for managing connections
|
|
# jc21
|
|
# ↳ https://link.to.github
|
|
# ↳ https://link.to.docs
|
|
|
|
services:
|
|
nginx:
|
|
image: jc21/nginx-proxy-manager:latest
|
|
container_name: nginx
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
- 81:81
|
|
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /home/fxequals/docker/nginx/data:/data
|
|
- /home/fxequals/docker/nginx/letsencrypt:/etc/letsencrypt
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|