From 48a3f519eced36c37c9eac0f4f4d06dcd6d9e16b Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Fri, 16 May 2025 15:45:48 +0200 Subject: [PATCH] Fix healthcheck command syntax in Docker Compose configuration --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 3a47f00..d78b872 100644 --- a/compose.yaml +++ b/compose.yaml @@ -19,7 +19,7 @@ services: volumes: - /docker/linkwarden/data:/data/data healthcheck: - test: ["/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"] + test: ["CMD", "/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"] depends_on: - postgres - meilisearch