this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add healthcheck configuration for db and redis services in docker-compose (#3327)

* Add healthcheck configuration for db and redis services in docker-compose

* fix

authored by

Aakash Singh and committed by
GitHub
babce350 f34c53c0

+12
+12
docker-compose.yaml
··· 14 14 - ${BACKUP_DIR:-./care-backups}:/backups 15 15 ports: 16 16 - "5433:5432" 17 + healthcheck: 18 + test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER:-postgres}"] 19 + interval: 10s 20 + retries: 5 21 + start_period: 10s 22 + timeout: 10s 17 23 18 24 redis: 19 25 image: redis:8-alpine ··· 22 28 - redis-data:/data 23 29 ports: 24 30 - "6380:6379" 31 + healthcheck: 32 + test: ["CMD", "redis-cli", "ping"] 33 + interval: 10s 34 + retries: 5 35 + start_period: 10s 36 + timeout: 10s 25 37 26 38 minio: 27 39 image: minio/minio:latest