a91a1132c9
Deploy Dashboard (Dev) / deploy-dev (push) Successful in 2m10s
Introduce a standalone scheduled info-engine worker with SQLite persistence and expose read-only dashboard APIs/UI so curated intelligence items can be collected and viewed with minimal architecture changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
494 B
YAML
17 lines
494 B
YAML
services:
|
|
info-engine:
|
|
build: .
|
|
container_name: info-engine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /volume1/docker/info-engine/data:/app/data
|
|
environment:
|
|
- DB_PATH=/app/data/info_engine.db
|
|
- INFO_ENGINE_INTERVAL_SECONDS=${INFO_ENGINE_INTERVAL_SECONDS:-900}
|
|
- INFO_ENGINE_SOURCES=${INFO_ENGINE_SOURCES:-https://hnrss.org/frontpage,https://lobste.rs/rss}
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|