Skip to content

Commit

Permalink
fix(docker-compose): Postgres healthcheck syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc committed Jan 20, 2025
1 parent e1785bc commit 431736d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
- ${POSTGRES_PORT:-5438} # Publishes on network but not to host
networks: ["dagster-network"]
healthcheck:
test: pg_isready -U $$POSTGRES_USER -d $$POSTGRES_PASSWORD
test: pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB
interval: 10s
timeout: 8s
retries: 5
Expand Down

0 comments on commit 431736d

Please sign in to comment.