Files
automatisch/docker/wait-for-postgres.sh
2022-08-31 21:29:05 +02:00

12 lines
226 B
Bash

#!/bin/sh
set -e
until psql -h "$POSTGRES_HOST" -U "$POSTGRES_USERNAME" -d "$POSTGRES_HOST" -c '\q'; do
>&2 echo "Postgres is unavailable - sleeping"
sleep 1
done
>&2 echo "Postgres is up - executing command"
exec "$@"