mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-16 20:48:35 +00:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
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
|
|
|
|
|
|
|