php-sqlsrv/test/functional/setup/Dockerfile-msphpsql-entrypoint.sh

11 lines
251 B
Bash
Raw Normal View History

2017-07-29 02:18:07 +02:00
set -e
2017-07-29 02:20:20 +02:00
db_migrate='/opt/mssql-tools/bin/sqlcmd -S sql -U sa -P Password123 -Q "select @@Version"'
2017-07-29 02:18:07 +02:00
until $db_migrate; do
>&2 echo "SQL Server is starting up. Running initial db configuration"
sleep 1
done
>&2 echo "SQL Server is up - starting app"