php-sqlsrv/entrypoint.sh

10 lines
228 B
Bash
Raw Normal View History

2017-07-29 02:18:07 +02:00
set -e
2017-08-02 00:51:12 +02:00
isConnected="/opt/mssql-tools/bin/sqlcmd -S db -U sa -P Password123"
2017-07-29 02:18:07 +02:00
2017-08-02 00:51:12 +02:00
until $isConnected; do
2017-07-29 02:18:07 +02:00
>&2 echo "SQL Server is starting up. Running initial db configuration"
sleep 1
done
>&2 echo "SQL Server is up - starting app"