From e2419411fa9299f3bfbccf36faa8a78789cb6443 Mon Sep 17 00:00:00 2001 From: "Christoph K." Date: Tue, 7 Apr 2026 18:37:49 +0200 Subject: [PATCH] Fix health check: use wget instead of curl (docker:latest has no curl) Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 185eb25..606ab14 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -29,4 +29,4 @@ jobs: - name: Health check run: | sleep 15 - curl -sf http://localhost:9050/healthz || exit 1 + wget -qO- http://192.168.1.4:9050/healthz || exit 1