From 178c7f0639d98f7e3a68df332abef50179fa8cc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Acu=C3=B1a?= Date: Thu, 26 Mar 2026 10:41:01 -0300 Subject: [PATCH] Update healthcheck curl options order --- single-node/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single-node/docker-compose.yml b/single-node/docker-compose.yml index b05ab245..52e400f8 100644 --- a/single-node/docker-compose.yml +++ b/single-node/docker-compose.yml @@ -9,7 +9,7 @@ services: wazuh.indexer: condition: service_healthy healthcheck: - test: [ "CMD-SHELL", "curl -f -u $$API_USERNAME:$$API_PASSWORD -k -s -X POST https://localhost:55000/security/user/authenticate?raw=true -o /dev/null || exit 1" ] + test: [ "CMD-SHELL", "curl -u $$API_USERNAME:$$API_PASSWORD -k -s -f -X POST https://localhost:55000/security/user/authenticate?raw=true -o /dev/null || exit 1" ] interval: 15s timeout: 5s retries: 5