16 lines
403 B
YAML
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
|