pay no attention to the man behind the curtain

This commit is contained in:
coolnsx
2023-12-05 15:02:24 +05:30
parent dac6d730f6
commit 209672e996
6 changed files with 89 additions and 0 deletions

2
nginx-proxy/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
data
letsencrypt

View File

@@ -0,0 +1,31 @@
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
watchtower:
image: containrrr/watchtower
restart: unless-stopped
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- nginx_proxy
environment:
- TZ=Asia/Kolkata
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_SCHEDULE=0 0 9 * * *
networks:
nginx_proxy:
name: nginx_proxy