From aff41ae0488baa13f2bca52980248d7af6b8acfb Mon Sep 17 00:00:00 2001 From: Christoforus Surjoputro Date: Sat, 21 Mar 2026 23:19:49 +0700 Subject: [PATCH] add PICOCLAW_GATEWAY_HOST to make healtcheck accessible on podman pod mode --- docker/docker-compose.local.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/docker-compose.local.yml b/docker/docker-compose.local.yml index 4fbcc658f..095bcb52a 100644 --- a/docker/docker-compose.local.yml +++ b/docker/docker-compose.local.yml @@ -20,6 +20,8 @@ services: # - "host.docker.internal:host-gateway" volumes: - ./data:/home/picoclaw/.picoclaw:Z + environment: + - PICOCLAW_GATEWAY_HOST=0.0.0.0 # needed to make healtcheck works on podman pod model entrypoint: ["picoclaw", "agent"] stdin_open: true tty: true @@ -44,5 +46,7 @@ services: # Uncomment to access host network; leave commented unless needed. #extra_hosts: # - "host.docker.internal:host-gateway" + environment: + - PICOCLAW_GATEWAY_HOST=0.0.0.0 # needed to make healtcheck works on podman pod model volumes: - ./data:/home/picoclaw/.picoclaw:Z