From 21b53a692b62c63ccd64b8be47e6d234c272eaed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Sat, 22 Nov 2025 16:57:43 +0100 Subject: [PATCH] Fix healthcheck to use curl instead of wget for Alpine compatibility --- docker-compose.example.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 37975f4..3e1c6d0 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -19,7 +19,7 @@ services: - ./data:/app/data - ./public/uploads:/app/public/uploads healthcheck: - test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/daily" ] + test: [ "CMD", "curl", "-f", "http://localhost:3000/api/daily" ] interval: 30s timeout: 10s retries: 3