From 6366920450c32889890589f1f8b900be62ed476d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E6=96=87=E9=94=8B0668000834?= Date: Fri, 13 Mar 2026 09:26:31 +0800 Subject: [PATCH] chore(docker): add healthcheck to full docker-compose gateway service Add Docker healthcheck configuration to the picoclaw-gateway service in docker-compose.full.yml for consistency with the standard compose file. This ensures the full MCP support variant also has proper health monitoring. --- docker/docker-compose.full.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/docker-compose.full.yml b/docker/docker-compose.full.yml index 6f34448c4..748b9ac2c 100644 --- a/docker/docker-compose.full.yml +++ b/docker/docker-compose.full.yml @@ -38,6 +38,12 @@ services: # NPM cache for faster MCP server installs - picoclaw-npm-cache:/root/.npm command: ["gateway"] + healthcheck: + test: ["CMD", "wget", "-q", "--spider", "http://localhost:18790/health"] + interval: 30s + timeout: 3s + start_period: 5s + retries: 3 volumes: picoclaw-workspace: