Create complete Dashboard application with Docker, Synology, and Unifi monitoring

Co-authored-by: mblanke <9078342+mblanke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-09 21:48:13 +00:00
parent e952d1f1be
commit 8b730a789a
21 changed files with 7080 additions and 1 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
dashboard:
build: .
container_name: dashboard
restart: unless-stopped
ports:
- "3000:3000"
- "3001:3001"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./config.json:/app/config.json:ro
environment:
- NODE_ENV=production
networks:
- dashboard-network
networks:
dashboard-network:
driver: bridge