8 lines
132 B
Bash
8 lines
132 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Start the script to create the DB and user
|
||
|
/usr/config/configure-db.sh &
|
||
|
|
||
|
# Start SQL Server
|
||
|
/opt/mssql/bin/sqlservr
|