From 8ad086067aad31a88a85412e93f04937380a021a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Oct 2025 22:58:29 +0000 Subject: [PATCH 1/2] Initial plan From 59fe31ad3ca6c53513ce6f057e247b76dac5b4c5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Oct 2025 23:01:31 +0000 Subject: [PATCH 2/2] Fix Envoy health check by replacing wget with curl Co-authored-by: rootfs <7062400+rootfs@users.noreply.github.com> --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2d01d200..21f193ed 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -39,7 +39,7 @@ services: networks: - semantic-network healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:19000/ready"] + test: ["CMD", "curl", "-f", "http://localhost:19000/ready"] interval: 10s timeout: 5s retries: 5