From a63d67bcae0c56dff9530cde901825d296ebb837 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Dec 2025 22:15:09 +0000 Subject: [PATCH] Fix Redis health check to authenticate with password Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com> --- blueprints/oneuptime/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/oneuptime/docker-compose.yml b/blueprints/oneuptime/docker-compose.yml index afec965d..3bd34e30 100644 --- a/blueprints/oneuptime/docker-compose.yml +++ b/blueprints/oneuptime/docker-compose.yml @@ -51,7 +51,7 @@ services: volumes: - redis_data:/data healthcheck: - test: ["CMD", "redis-cli", "--raw", "incr", "ping"] + test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "ping"] interval: 10s timeout: 5s retries: 5