From 222094d13f5a0bea50edce37c2cd189c7d4f873e Mon Sep 17 00:00:00 2001 From: Till JS Date: Mon, 30 Mar 2026 19:33:48 +0200 Subject: [PATCH] fix(monitoring): promtail depends_on service_started instead of healthy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Loki healthcheck interval is 5min — using service_healthy blocks Promtail from starting for up to 5 minutes. service_started is sufficient since Loki reports /ready immediately after startup. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 9acbf9abc..bc57f5a42 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -1626,7 +1626,7 @@ services: - /var/run/docker.sock:/var/run/docker.sock:ro depends_on: loki: - condition: service_healthy + condition: service_started healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:9080/ready"] interval: 300s