fix(docker compose): increase healthcheck start period (#1721)

- the healthcheck was commencing before the server had started
- this resulted in the server being incorrectly labelled unhealthy prior to it having had sufficient time to start
- the server was being restarted as a result of this incorrect diagnosis by the healthcheck, resulting in an infinite start->unhealthy->restart cycle
This commit is contained in:
Iain Sproat
2023-07-24 11:17:53 +01:00
committed by GitHub
parent 0da6996a54
commit 9cb71f0ea3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ services:
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
start_period: 90s
environment:
# TODO: Change this to the URL of the speckle server, as accessed from the network
CANONICAL_URL: 'http://localhost'