first commit

This commit is contained in:
2026-07-12 09:18:28 +08:00
commit cc79650769
63 changed files with 10726 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
services:
watcher:
build: .
restart: unless-stopped
env_file:
- .env
volumes:
- ./data:/app/data
- ./reports:/app/reports
- ./daily_briefings:/app/daily_briefings
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
dashboard:
build: .
restart: unless-stopped
command: ["python", "-m", "src.main", "dashboard", "--host", "0.0.0.0", "--port", "8517"]
env_file:
- .env
ports:
- "8517:8517"
volumes:
- ./data:/app/data
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"