From e64e7d1d9266a003b1711fe6116fd9bbed042f7d Mon Sep 17 00:00:00 2001 From: Taylan Date: Sun, 13 Apr 2025 16:51:00 +0200 Subject: [PATCH] More relaxed healthcheck for low end systems --- install/config/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/config/docker-compose.yml b/install/config/docker-compose.yml index 6b1761c2..496b0138 100644 --- a/install/config/docker-compose.yml +++ b/install/config/docker-compose.yml @@ -8,9 +8,9 @@ services: - ./config:/app/config healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3001/api/v1/"] - interval: "3s" - timeout: "3s" - retries: 5 + interval: "10s" + timeout: "10s" + retries: 15 {{if .InstallGerbil}} gerbil: image: fosrl/gerbil:{{.GerbilVersion}}