From 146c554c1fffe8d45ff5910b26cf52111c216fbc Mon Sep 17 00:00:00 2001 From: WhiteX Date: Thu, 12 Jun 2025 14:51:12 +0300 Subject: [PATCH] fix: update Redis healthcheck command to include authentication --- docker-compose-coolify.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker-compose-coolify.yml b/docker-compose-coolify.yml index c56b0d08..cd433a24 100644 --- a/docker-compose-coolify.yml +++ b/docker-compose-coolify.yml @@ -67,15 +67,12 @@ services: image: redis:7.2.3 command: redis-server --requirepass ${REDIS_PASSWORD} restart: always - # ports: - # - "6379:6379" volumes: - redis-data:/data - environment: - REDIS_PASSWORD=${REDIS_PASSWORD} healthcheck: - test: ["CMD", "redis-cli", "ping"] + test: ["CMD", "redis-cli", "--no-auth-warning", "auth", "${REDIS_PASSWORD}", "ping"] interval: 5s timeout: 4s retries: 5