From 9f364bf677490fc5e1d48837b7ab564629ef2dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Fri, 15 May 2026 17:38:23 +0400 Subject: [PATCH] deploy: fix directus port --- .gitea/workflows/deploy-beta.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/deploy-beta.yaml b/.gitea/workflows/deploy-beta.yaml index 686b1c2..7ab0c2c 100644 --- a/.gitea/workflows/deploy-beta.yaml +++ b/.gitea/workflows/deploy-beta.yaml @@ -72,6 +72,13 @@ jobs: echo "==> Redémarrage Directus" docker compose restart directus + echo "==> État des conteneurs" + docker compose ps + + echo "==> Réponse health check brute" + sleep 5 + curl -sv http://localhost:8066/server/health 2>&1 || true + echo "==> Vérification santé" for i in $(seq 1 12); do if curl -sf http://localhost:8066/server/health | grep -q '"status":"ok"'; then