initial commit

This commit is contained in:
2026-04-07 15:46:18 -04:00
commit bc1b1d1232
43 changed files with 1627 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
nginx:
image: nginx:alpine
restart: unless-stopped
container_name: nginx
networks:
- shared
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- '80:80'
- '443:443'
- '24444:24444' # for mcsmanager-daemon
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./conf.d:/etc/nginx/conf.d:ro
- /etc/letsencrypt:/etc/letsencrypt:ro
- ./certbot/www:/var/www/certbot:ro
networks:
shared:
name: shared