Wait for MySQL to be reading before initialising/upgrading database

This commit is contained in:
Sam Martin 2018-06-27 12:29:52 +01:00
parent 599b848d46
commit 497f5cfadd
2 changed files with 13 additions and 1 deletions

View file

@ -22,6 +22,9 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.lis
RUN apt-get update -y
RUN apt-get install -y yarn
# Install Netcat for DB healthcheck
RUN apt-get install -y netcat
# lib for building mysql db driver
RUN apt-get install -y libmysqlclient-dev

View file

@ -1,5 +1,14 @@
#!/bin/sh
# Wait for us to be able to connect to MySQL before proceeding
until nc -zv \
$PDA_DB_HOST \
3306;
do
echo "MySQL ($PDA_DB_HOST) is unavailable - sleeping"
sleep 1
done
cd /powerdns-admin
if [ ! -d "/powerdns-admin/migrations" ]; then