From 147d7225706e2fdd161a2e38dda2a461be6d8eee Mon Sep 17 00:00:00 2001 From: goose Date: Tue, 14 Jul 2026 13:00:30 -0300 Subject: [PATCH] fix: healthcheck uses HTTPS + -k for self-signed cert --- backend/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index 0bba637..55a4946 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -57,7 +57,7 @@ services: backend: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-sf", "http://localhost:6501/"] + test: ["CMD", "curl", "-skf", "https://localhost:6501/"] interval: 30s timeout: 10s retries: 3