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.
This commit is contained in:
DJObleezy 2025-04-24 17:09:08 -07:00
parent 82791cade2
commit 07bf6358b2

View File

@ -8,12 +8,6 @@ services:
- redis_data:/data - redis_data:/data
ports: ports:
- "6379:6379" - "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1s
timeout: 5s
retries: 3
start_period: 1s
dashboard: dashboard:
build: . build: .
@ -30,11 +24,6 @@ services:
- LOG_LEVEL=INFO - LOG_LEVEL=INFO
volumes: volumes:
- ./logs:/app/logs - ./logs:/app/logs
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"]
interval: 5s
timeout: 10s
retries: 3
volumes: volumes:
redis_data: redis_data: