jupyter/nginx/compose.yml
2025-07-15 18:40:59 +02:00

16 lines
403 B
YAML

services:
nginx:
image: nginx:alpine
container_name: nginx
restart: unless-stopped
ports:
- 8080:80
- 8443:443
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./conf.d:/etc/nginx/conf.d:ro
- ./snippets:/etc/nginx/snippets:ro
- ./ssl:/etc/nginx/ssl:ro
- ../logs/nginx:/etc/log/nginx
- ./discord.html:/var/www/static/index.html:ro