Fix health check: use wget instead of curl (docker:latest has no curl)
All checks were successful
Deploy to NAS / deploy (push) Successful in 46s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Christoph K.
2026-04-07 18:37:49 +02:00
parent 286b48247e
commit e2419411fa

View File

@@ -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