Add Docker deployment for Unraid

- Dockerfile with nginx:alpine for static file serving
- docker-compose.yml with port 9113:80 mapping
- deploy.sh for git-based deployment to Unraid
- setup-unraid.sh for initial server configuration
- manage.sh for container operations (logs, status, restart, etc.)
- .gitignore to exclude config.js

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Michael Simard
2026-01-22 09:42:20 -06:00
parent 86d34e9462
commit 8396fbcf6f
10 changed files with 1551 additions and 162 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
unraid-dash:
build: .
container_name: unraid-dash
restart: unless-stopped
ports:
- "9113:80"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"