Initial commit: Media Server Dashboard
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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: {}
|
||||
Reference in New Issue
Block a user