7 lines
124 B
Bash
7 lines
124 B
Bash
# Wait for PostgreSQL to be ready
|
|
until pg_isready -h $HOST -U $USER; do
|
|
echo "Waiting for PostgreSQL..."
|
|
sleep 2
|
|
done
|
|
|