mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 11:37:42 +00:00
- api.py exposes /api/stats, /api/health, /api/state on port 8099 - daemon updates shared state for API - HACS custom component with sensors for all stats - config flow for easy setup - example automations in docs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
423 B
YAML
16 lines
423 B
YAML
services:
|
|
connectd:
|
|
image: sudoxreboot/connectd:latest
|
|
container_name: connectd
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "8099:8099"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./db:/app/db
|
|
# daemon runs continuously by default
|
|
# for one-shot or dry-run, override command:
|
|
# command: ["python", "daemon.py", "--dry-run"]
|
|
# command: ["python", "cli.py", "scout"]
|