fix: Fix and rename pg_database_url.sh helper script (#2747)

- Fix and rename pg_database_url helper script
- Use single-quote and remove trailing whitespace
This commit is contained in:
Pascal Jufer
2021-08-03 19:26:55 +02:00
committed by GitHub
parent ab54d9c629
commit c37966744f
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ echo "Waiting for postgres to become ready...."
# Let DATABASE_URL env take presedence over individual connection params.
# This is done to avoid printing the DATABASE_URL in the logs
$(docker/entrypoints/helpers/pg_database_url.sh)
$(docker/entrypoints/helpers/pg_database_url.rb)
PG_READY="pg_isready -h $POSTGRES_HOST -p $POSTGRES_PORT -U $POSTGRES_USERNAME"
until $PG_READY