mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 19:46:30 +00:00
- add lemmy scraper (fediverse reddit alternative) - add discord discovery + DM delivery - fix all env var credentials (no hardcoded secrets) - add beautifulsoup to requirements - fix DB path for docker (uses /data volume) - update docker-compose to use sudoxreboot/connectd 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
392 B
YAML
14 lines
392 B
YAML
services:
|
|
connectd:
|
|
image: sudoxreboot/connectd:latest
|
|
container_name: connectd
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
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"]
|