From ed78d940259b5c3e2b7dcfb9eec262869a5d7e02 Mon Sep 17 00:00:00 2001 From: Agent Date: Sun, 5 Apr 2026 16:14:56 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20fix:=20remove=20supervisor=20from=20agen?= =?UTF-8?q?ts=20container=20cron=20=E2=80=94=20cannot=20run=20without=20Do?= =?UTF-8?q?cker=20access=20(#231)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/agents/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/agents/entrypoint.sh b/docker/agents/entrypoint.sh index 3fe8b37..7f3cbac 100644 --- a/docker/agents/entrypoint.sh +++ b/docker/agents/entrypoint.sh @@ -24,6 +24,8 @@ FORGE_URL=http://forgejo:3000" # Parse DISINTO_AGENTS env var (default: all agents) # 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" if [ -n "${DISINTO_AGENTS:-}" ]; then agents_to_run="$DISINTO_AGENTS"