From 07bf6358b2912acf0e58922fc00f517700ff506f Mon Sep 17 00:00:00 2001 From: DJObleezy Date: Thu, 24 Apr 2025 17:09:08 -0700 Subject: [PATCH] Remove healthcheck configurations from services This commit removes the healthcheck settings for both the Redis service and another service. The removed configurations included parameters for health checks using `redis-cli ping` and `curl`, along with their respective interval, timeout, retries, and start period settings. --- docker-compose.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 721b134..cb75a02 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,12 +8,6 @@ services: - redis_data:/data ports: - "6379:6379" - healthcheck: - test: ["CMD", "redis-cli", "ping"] - interval: 1s - timeout: 5s - retries: 3 - start_period: 1s dashboard: build: . @@ -30,11 +24,6 @@ services: - LOG_LEVEL=INFO volumes: - ./logs:/app/logs - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"] - interval: 5s - timeout: 10s - retries: 3 volumes: redis_data: