Initial commit

This commit is contained in:
Mickey
2026-07-03 19:06:49 +02:00
commit 32056c356f
16 changed files with 1067 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
services:
proxy:
image: nginx:1.29-alpine
container_name: mnmsoft_proxy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./nginx/.htpasswd:/etc/nginx/.htpasswd:ro
- ./generated/default.conf:/etc/nginx/conf.d/default.conf:ro
- ./generated/index.html:/usr/share/nginx/html/index.html:ro
- ./nginx/html:/var/www/certbot:rw
- ./letsencrypt:/etc/letsencrypt:ro
certbot:
image: certbot/certbot:latest
profiles:
- certbot
volumes:
- ./nginx/html:/var/www/certbot:rw
- ./letsencrypt:/etc/letsencrypt:rw