Files
Website-Media-Server/docker-compose.yml
T
2026-07-11 05:40:27 +02:00

26 lines
546 B
YAML

services:
nginx:
image: nginx:latest
container_name: nginx
restart: unless-stopped
ports:
- 80:80
volumes:
- ./html:/usr/share/nginx/html:ro
- /mnt/ssd:/downloads:ro
environment:
- NGINX_HOST=example.com
- NGINX_PORT=80
diskinfo:
image: alpine:latest
container_name: diskinfo
restart: unless-stopped
volumes:
- /mnt/ssd:/downloads:ro
- ./html:/html
- ./scripts/update-disk.sh:/update-disk.sh:ro
command: ["/bin/sh", "/update-disk.sh"]
networks: {}