From 8f0d3d6b365b35bee01627140380a263a0806f27 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 24 Apr 2026 13:32:32 -0400 Subject: [PATCH] chore: update healthcheck command for zipline service in compose.yaml --- nodes/heimdall/zipline/compose.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nodes/heimdall/zipline/compose.yaml b/nodes/heimdall/zipline/compose.yaml index 96c6680..1786daf 100644 --- a/nodes/heimdall/zipline/compose.yaml +++ b/nodes/heimdall/zipline/compose.yaml @@ -43,13 +43,8 @@ services: - "traefik.http.routers.zipline.tls=true" - "traefik.http.routers.zipline.tls.certresolver=cloudflare" - "traefik.http.services.zipline.loadbalancer.server.port=3000" - # healthcheck: - # test: ['CMD', 'wget', '-q', '--spider', 'http://localhost:3000/api/healthcheck'] - # interval: 15s - # timeout: 2s - # retries: 2 healthcheck: - test: ["CMD", "nc", "-z", "localhost", "3000"] + test: ["CMD-SHELL", "curl -f http://localhost:3000/api/healthcheck || exit 1"] interval: 10s timeout: 5s retries: 3