docker-compose.override.yml
442 Bytes
services:
bettafish:
image: bettafish-local:latest
build:
context: ../..
dockerfile: infra/docker/Dockerfile
env_file:
- ../../.env
depends_on:
db:
condition: service_healthy
db:
healthcheck:
test:
- CMD-SHELL
- pg_isready -U ${POSTGRES_USER:-bettafish} -d ${POSTGRES_DB:-bettafish}
interval: 10s
timeout: 5s
retries: 10
start_period: 20s