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:
parent
19835b2f60
commit
6366920450
1 changed files with 6 additions and 0 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue