mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
7 lines
228 B
Bash
7 lines
228 B
Bash
#wait for the SQL Server to come up
|
|
sleep 20s
|
|
|
|
echo "running set up script"
|
|
#run the setup script to create the DB and the schema in the DB
|
|
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P MssqlPass123 -d master -i db-init.sql
|