15 lines
258 B
Bash
15 lines
258 B
Bash
#!/bin/sh
|
|
# wait-for-postgres.sh
|
|
|
|
set -e
|
|
|
|
host="$1"
|
|
shift
|
|
|
|
until PGPASSWORD=$POSTGRES_PASS psql -h "$host" -U "postgres" -c '\q'; do
|
|
>&2 echo "Postgres is unavailable - sleeping"
|
|
sleep 1
|
|
done
|
|
|
|
>&2 echo "Postgres is up - executing command"
|
|
exec "$@" |