php-sqlsrv/entrypoint.sh
2017-08-02 12:38:18 -07:00

13 lines
282 B
Bash

set -e
while ! ping -c3 $1 &>/dev/null; do echo "Ping Fail - `date`"; done ; echo "Host Found - `date`";
testConnection="/opt/mssql-tools/bin/sqlcmd -S $1 -U $2 -P $3"
until $testConnection; do
>&2 echo "SQL Server is starting up.."
sleep 1
done
>&2 echo "SQL Server is up!"