From eb07ca381ea52d5a287b36f4f64846831a6fd097 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 22 Jun 2025 15:21:00 +0300 Subject: [PATCH] Fixes: 1) Update healthcheck to include 'Accept: application/json' header in curl command; Extra: None; --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index bbbb781e..1fe69839 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: condition: service_healthy logging: *default-logging healthcheck: - test: [ "CMD-SHELL", "curl -f http://localhost:8000/health || exit 1" ] + test: [ "CMD-SHELL", "curl --header 'Accept: application/json' -f http://localhost:8000/health/ || exit 1" ] interval: 30s timeout: 10s retries: 5