fix(typesense): use wget instead of curl for healthcheck
Some checks failed
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 33s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m12s
Build and Push Docker Images / Build Kestra Init (push) Has been cancelled
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Has been cancelled
Build and Push Docker Images / Trigger Portainer Update (push) Has been cancelled
Build and Push Docker Images / Build Integrator (push) Has been cancelled

Typesense Docker image ships with wget but not curl.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 10:12:54 +00:00
parent 1574089b95
commit 09d704c325
2 changed files with 2 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ services:
- backend
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:8108/health"]
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8108/health"]
interval: 15s
timeout: 5s
retries: 5

View File

@@ -90,7 +90,7 @@ services:
- schoolcompare-network
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:8108/health"]
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8108/health"]
interval: 15s
timeout: 5s
retries: 5