From 3f99aaec43d56efaa42f8220399e815262bde548 Mon Sep 17 00:00:00 2001 From: Dorian Date: Tue, 3 Feb 2026 00:16:18 +0000 Subject: [PATCH] Fix Docker health check - use root path instead of /health The health check was failing because /health endpoint doesn't exist. Changed to check the root path (/) which serves the Vue app. This should prevent the container from restarting. Co-authored-by: Cursor --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7d299b1..73829e7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,7 @@ services: labels: - "com.centurylinklabs.watchtower.enable=true" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7777/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7777/"] interval: 30s timeout: 10s retries: 3