-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure postgres server is ready before running migrations
- Loading branch information
1 parent
b260095
commit 7e1e105
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
until psql service=qwc_configdb -c "select 1" > /dev/null 2>&1; do | ||
echo "Waiting for postgres server..." | ||
sleep 1 | ||
done | ||
|
||
PGSERVICE=qwc_configdb alembic upgrade ${ALEMBIC_VERSION} |