Improve the way app waits for db to be ready #1

Merged
thopic merged 1 commits from db-entrypoint-wait into gnous-5.34 2021-05-23 17:31:21 +02:00
2 changed files with 6 additions and 1 deletions

View File

@ -25,6 +25,7 @@ RUN apk add --no-cache \
netcat-openbsd \
xmlsec-dev \
tzdata \
postgresql-client \
&& rm -rf /tmp/*
# Get Mattermost

View File

@ -74,7 +74,11 @@ if [ "$1" = 'mattermost' ]; then
# Wait another second for the database to be properly started.
# Necessary to avoid "panic: Failed to open sql connection pq: the database system is starting up"
sleep 1
until pg_isready -h $DB_HOST -p $DB_PORT_NUMBER
do
echo "Database is not ready yet. Waiting 5 seconds."
sleep 5
done
echo "Starting mattermost"
fi