mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-12 19:20:45 +02:00

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.
30 lines
560 B
YAML
30 lines
560 B
YAML
version: '3'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redis_data:/data
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
dashboard:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- REDIS_URL=redis://redis:6379
|
|
- WALLET=35eS5Lsqw8NCjFJ8zhp9JaEmyvLDwg6XtS
|
|
- POWER_COST=0
|
|
- POWER_USAGE=0
|
|
- NETWORK_FEE=0
|
|
- TIMEZONE=America/Los_Angeles
|
|
- LOG_LEVEL=INFO
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
|
|
volumes:
|
|
redis_data:
|