From 92d1291bffef8d798ddae4512e74ae0bafd58627 Mon Sep 17 00:00:00 2001 From: sven Date: Sun, 18 Jan 2026 09:35:13 +0100 Subject: [PATCH] =?UTF-8?q?Healthcheck=20f=C3=BCr=20Redis=20eingebaut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redis/compose.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/redis/compose.yaml b/redis/compose.yaml index 2d9a21a..87e25ea 100755 --- a/redis/compose.yaml +++ b/redis/compose.yaml @@ -14,4 +14,9 @@ services: - 9379:6379 volumes: - ./data:/data + healthcheck: + test: ["CMD-SHELL", "redis-cli ping || exit 1"] + interval: 10s + timeout: 5s + retries: 3 networks: {}