projetPulumi/entrypoint.sh
2024-11-21 12:34:47 +01:00

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