mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 07:15:17 +05:30
19 lines
338 B
YAML
19 lines
338 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
|
|
networks:
|
|
- nginx_proxy
|
|
|
|
networks:
|
|
nginx_proxy:
|
|
name: nginx_proxy
|