mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-17 04:53:46 +00:00
11 lines
193 B
Bash
11 lines
193 B
Bash
|
|
CONTAINER_NAME="testsqlserver"
|
||
|
|
ready="SQL Server is now ready for client connections."
|
||
|
|
until docker logs $CONTAINER_NAME | grep "$ready";
|
||
|
|
do
|
||
|
|
echo "sleeping for 5 seconds"
|
||
|
|
sleep 5
|
||
|
|
done
|
||
|
|
|
||
|
|
|
||
|
|
|