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) <noreply@anthropic.com>
This commit is contained in:
parent
8e09efee86
commit
41d836299e
1 changed files with 3 additions and 0 deletions
|
|
@ -81,6 +81,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "test", "-f", "/workspace/tmp/containers/contracts.env"]
|
test: ["CMD", "test", "-f", "/workspace/tmp/containers/contracts.env"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
|
timeout: 3s
|
||||||
retries: 18
|
retries: 18
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
|
|
@ -146,6 +147,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5173/"]
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5173/"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
|
timeout: 3s
|
||||||
retries: 24
|
retries: 24
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
|
|
@ -174,6 +176,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5174/"]
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5174/"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
|
timeout: 3s
|
||||||
retries: 6
|
retries: 6
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue