fix: Add Dendrite to docker-compose stack (#619)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
openhands 2026-03-25 00:28:04 +00:00
parent df640af7c1
commit b86edd7e5d
6 changed files with 195 additions and 9 deletions

View file

@ -57,6 +57,14 @@ log "Claude CLI: $(claude --version 2>&1 || true)"
install_project_crons
# Start matrix listener in background (if configured)
if [ -n "${MATRIX_TOKEN:-}" ] && [ -n "${MATRIX_ROOM_ID:-}" ]; then
log "Starting matrix listener in background"
su -s /bin/bash agent -c "${DISINTO_DIR}/lib/matrix_listener.sh" &
else
log "Matrix listener: skipped (MATRIX_TOKEN or MATRIX_ROOM_ID not set)"
fi
# Run cron in the foreground. Cron jobs execute as the agent user.
log "Starting cron daemon"
exec cron -f