mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 07:15:17 +05:30
23 lines
459 B
YAML
23 lines
459 B
YAML
services:
|
|
app:
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
restart: unless-stopped
|
|
container_name: nginx_proxy
|
|
ports:
|
|
- '80:80'
|
|
#- '81:81'
|
|
- '443:443'
|
|
volumes:
|
|
- ./data:/data
|
|
- ./letsencrypt:/etc/letsencrypt
|
|
- ./server_proxy.conf:/data/nginx/custom/server_proxy.conf
|
|
networks:
|
|
- nginx_proxy
|
|
environment:
|
|
- PUID=$PUID
|
|
- PGID=$PGID
|
|
|
|
networks:
|
|
nginx_proxy:
|
|
name: nginx_proxy
|