Skip to content

Instantly share code, notes, and snippets.

@StanlyShauro
Forked from MichalAdorno/docker-compose.yml
Created December 27, 2023 03:34
Show Gist options
  • Save StanlyShauro/b7140e5ab7b0647146fa9e3a00488b30 to your computer and use it in GitHub Desktop.
Save StanlyShauro/b7140e5ab7b0647146fa9e3a00488b30 to your computer and use it in GitHub Desktop.
docker-compose Postgres health-check
version: "3"
services:
postgress:
....
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
app:
...
depends_on:
postgres:
condition: service_healthy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment