From 038300e24324f09d7cd5c6bd9387fc881702c9a0 Mon Sep 17 00:00:00 2001 From: Jonas Klesen Date: Wed, 18 Jun 2025 13:30:14 +0200 Subject: [PATCH] fix(service): audiobookshelf healthcheck command (#5993) --- templates/compose/audiobookshelf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/audiobookshelf.yaml b/templates/compose/audiobookshelf.yaml index 86b932240..3df294ce8 100644 --- a/templates/compose/audiobookshelf.yaml +++ b/templates/compose/audiobookshelf.yaml @@ -16,7 +16,7 @@ services: - audiobookshelf-config:/config - audiobookshelf-metadata:/metadata healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:80/ping || exit 1"] + test: ["CMD-SHELL", "wget --quiet --tries=1 --timeout=5 http://localhost:80/ping -O /dev/null || exit 1"] interval: 30s timeout: 10s retries: 3