fix: fix: remove supervisor from agents container cron — cannot run without Docker access (#231)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful

This commit is contained in:
Agent 2026-04-05 16:14:56 +00:00
parent 562c6ad0bf
commit ed78d94025

View file

@ -24,6 +24,8 @@ FORGE_URL=http://forgejo:3000"
# Parse DISINTO_AGENTS env var (default: all agents) # Parse DISINTO_AGENTS env var (default: all agents)
# Expected format: comma-separated list like "review,gardener" or "dev" # Expected format: comma-separated list like "review,gardener" or "dev"
# Note: supervisor is NOT installed here — it runs on the host, not in container.
# Supervisor requires host-level Docker access and pgrep, which the container lacks.
local agents_to_run="review,dev,gardener" local agents_to_run="review,dev,gardener"
if [ -n "${DISINTO_AGENTS:-}" ]; then if [ -n "${DISINTO_AGENTS:-}" ]; then
agents_to_run="$DISINTO_AGENTS" agents_to_run="$DISINTO_AGENTS"