fix(docker): increase control-pipeline healthcheck tolerance for long-running jobs

Dedup Phase 2 blocks the event loop for extended periods, causing
health checks to fail. Docker then restarts the container and kills
the job. Increased retries from 3 to 10, timeout from 10s to 30s.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-28 12:35:39 +02:00
parent 9dc16674e2
commit b873c0e4ae

View File

@@ -414,10 +414,10 @@ services:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
interval: 60s
timeout: 30s
retries: 10
start_period: 30s
restart: unless-stopped
networks:
- breakpilot-network