feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
services:
|
|
|
|
|
sojuboy:
|
|
|
|
|
build: .
|
|
|
|
|
image: sojuboy:latest
|
|
|
|
|
container_name: sojuboy
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
env_file: .env
|
|
|
|
|
ports:
|
2025-08-16 12:29:58 -05:00
|
|
|
- "127.0.0.1:8080:8080"
|
feat: initial Beta 1 release
- soju raw connector with event playback and CHATHISTORY fallback
- SQLite store with msgid de-dup and retention job
- Mentions + Pushover + tuning; structured JSON logs
- Summaries: concise, link-following, multi-line grouping
- HTTP: /healthz, /ready, /tail, /trigger, /metrics
- Docker: distroless, healthcheck, version metadata
- Docs: README, CHANGELOG, compose
2025-08-15 18:06:28 -05:00
|
|
|
volumes:
|
|
|
|
|
- sojuboy_data:/data
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "/sojuboy", "--health"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 3s
|
|
|
|
|
retries: 3
|
|
|
|
|
volumes:
|
|
|
|
|
sojuboy_data: {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|