From f2104768a0f121a11232b8533de2b792d8e0416f Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Fri, 1 May 2026 08:39:57 +0200 Subject: [PATCH] fix(docker): re-enable healthcheck after dedup completion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dedup is done (162k controls). Re-enable healthcheck with generous timeouts (10 retries × 30s) and restart: unless-stopped. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6d4b83b..1ba752d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -413,8 +413,12 @@ services: embedding-service: condition: service_healthy healthcheck: - disable: true - restart: "no" + test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"] + interval: 60s + timeout: 30s + retries: 10 + start_period: 30s + restart: unless-stopped networks: - breakpilot-network