Sanitized mirror from private repository - 2026-04-19 09:44:40 UTC
Some checks failed
Documentation / Deploy to GitHub Pages (push) Has been cancelled
Documentation / Build Docusaurus (push) Has been cancelled

This commit is contained in:
Gitea Mirror Bot
2026-04-19 09:44:40 +00:00
commit 25c3532414
1439 changed files with 363585 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
services:
dashboard-api:
build: ./api
ports:
- "8888:8888"
volumes:
- ../scripts:/app/scripts:ro
- ../data:/app/data:ro
- /tmp:/app/logs:ro
- ~/.ssh:/root/.ssh:ro
network_mode: host
restart: unless-stopped
dashboard-ui:
build: ./ui
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8888
network_mode: host
depends_on:
- dashboard-api
restart: unless-stopped