mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 14:27:59 +03:00
8 lines
175 B
Bash
8 lines
175 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Run init-script with long timeout - and make it run in the background
|
||
|
bash /run-init.sh &
|
||
|
|
||
|
# Start SQL server, quitely
|
||
|
/opt/mssql/bin/sqlservr 2>&1 > /dev/null
|