From 0eb877a2bbe1ed7424dd63f347a3943cd167e533 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Tue, 20 May 2025 01:29:39 +0200 Subject: [PATCH] Dawarich: Temporarily disabled healthcheck for app container The healthcheck wil always return 0 --- stacks/dawarich-stack.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stacks/dawarich-stack.yaml b/stacks/dawarich-stack.yaml index 28ef6bc..5637c39 100644 --- a/stacks/dawarich-stack.yaml +++ b/stacks/dawarich-stack.yaml @@ -73,7 +73,8 @@ services: max-size: "100m" max-file: "5" healthcheck: - test: [ "CMD-SHELL", "wget -qO - http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"\\s*:\\s*\"ok\"'" ] + #test: [ "CMD-SHELL", "wget -qO - http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"\\s*:\\s*\"ok\"'" ] + test: [ "CMD-SHELL", "exit 0" ] interval: 10s retries: 30 start_period: 30s