From 41d836299edce1e58700b6a78ea5757294d7e621 Mon Sep 17 00:00:00 2001 From: johba Date: Sun, 22 Mar 2026 04:06:55 +0000 Subject: [PATCH] fix: Several other healthchecks are missing timeout fields (#937) Add explicit timeout: 3s to bootstrap, webapp, and landing healthchecks to avoid Docker's 30s default. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b706e6b..b73a366 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -81,6 +81,7 @@ services: healthcheck: test: ["CMD", "test", "-f", "/workspace/tmp/containers/contracts.env"] interval: 5s + timeout: 3s retries: 18 start_period: 10s @@ -146,6 +147,7 @@ services: healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5173/"] interval: 5s + timeout: 3s retries: 24 start_period: 10s @@ -174,6 +176,7 @@ services: healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5174/"] interval: 5s + timeout: 3s retries: 6 start_period: 10s