- 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>
13 lines
227 B
YAML
13 lines
227 B
YAML
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"
|