From 4e0749e49408c8e8222a674dcf092b393af6ed12 Mon Sep 17 00:00:00 2001 From: sven Date: Tue, 20 Jan 2026 14:02:00 +0100 Subject: [PATCH] Healthcheck eingebaut --- bookstack/compose.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bookstack/compose.yaml b/bookstack/compose.yaml index e8032b9..887f504 100755 --- a/bookstack/compose.yaml +++ b/bookstack/compose.yaml @@ -29,4 +29,11 @@ services: ports: - 9345:8080 restart: unless-stopped + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost/status"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 60s + networks: {}