Fix Meilisearch healthcheck: use wget instead of curl

The getmeili/meilisearch image does not include curl, causing the
healthcheck to fail and blocking messenger startup.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-26 09:24:35 +01:00
parent 23b92f101c
commit 264a82a97c
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ services:
networks:
- e-ticket
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7700/health"]
test: ["CMD-SHELL", "wget -q --spider http://localhost:7700/health || exit 1"]
interval: 5s
timeout: 5s
retries: 5

View File

@@ -138,7 +138,7 @@ services:
volumes:
- meilisearch-data:/meili_data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7700/health"]
test: ["CMD-SHELL", "wget -q --spider http://localhost:7700/health || exit 1"]
interval: 5s
timeout: 5s
retries: 5