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.
This commit is contained in:
曾文锋0668000834 2026-03-13 09:26:31 +08:00
parent 19835b2f60
commit 6366920450

View file

@ -38,6 +38,12 @@ services:
# NPM cache for faster MCP server installs # NPM cache for faster MCP server installs
- picoclaw-npm-cache:/root/.npm - picoclaw-npm-cache:/root/.npm
command: ["gateway"] command: ["gateway"]
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:18790/health"]
interval: 30s
timeout: 3s
start_period: 5s
retries: 3
volumes: volumes:
picoclaw-workspace: picoclaw-workspace: