mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
6dae132fce
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2049 GitOrigin-RevId: 9f10c26eef5382fb7b8e750ad272a5797b4cd6d8
57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
#!/usr/bin/env bash
|
|
### This file is not meant to be run directly, but to be sourced from
|
|
### the dev script. It defines all the functions required to run an
|
|
### MSSQL docker container.
|
|
|
|
|
|
######################
|
|
# Configuration #
|
|
######################
|
|
|
|
if [ "$MODE" = "test" ]; then
|
|
MSSQL_PORT=31433
|
|
else
|
|
MSSQL_PORT=21433
|
|
fi
|
|
|
|
MSSQL_PASSWORD=hasuraMSSQL1
|
|
MSSQL_CONTAINER_NAME="hasura-dev-mssql-$MSSQL_PORT"
|
|
MSSQL_CONN_STR="DRIVER={ODBC Driver 17 for SQL Server};SERVER=127.0.0.1,$MSSQL_PORT;Uid=sa;Pwd=$MSSQL_PASSWORD;"
|
|
MSSQL_DOCKER="docker exec -it $MSSQL_CONTAINER_NAME sqlcmd -S localhost -U sa -P $MSSQL_PASSWORD"
|
|
|
|
if [[ `uname -m` == 'arm64' ]]; then
|
|
MSSQL_PLATFORM=linux/arm64
|
|
MSSQL_CONTAINER_IMAGE=mcr.microsoft.com/azure-sql-edge
|
|
else
|
|
MSSQL_PLATFORM=linux/amd64
|
|
MSSQL_CONTAINER_IMAGE=hasura/mssql-server-2019-cu10-ubuntu-20.04:latest
|
|
fi
|
|
|
|
######################
|
|
# Functions #
|
|
######################
|
|
|
|
function mssql_launch_container(){
|
|
echo_pretty "Launching MSSQL container: $MSSQL_CONTAINER_NAME"
|
|
docker run --name $MSSQL_CONTAINER_NAME \
|
|
--platform "$MSSQL_PLATFORM" \
|
|
-e ACCEPT_EULA=1 \
|
|
-p 127.0.0.1:"$MSSQL_PORT":1433 -d "$MSSQL_CONTAINER_IMAGE"
|
|
}
|
|
|
|
function mssql_wait {
|
|
echo -n "Waiting for mssql to come up"
|
|
until ( $MSSQL_DOCKER -Q 'SELECT 1' ) &>/dev/null; do
|
|
echo -n '.' && sleep 0.2
|
|
done
|
|
echo " Ok"
|
|
}
|
|
|
|
function mssql_cleanup(){
|
|
echo_pretty "Removing $MSSQL_CONTAINER_NAME and its volumes in 5 seconds!"
|
|
echo_pretty " PRESS CTRL-C TO ABORT removal of all containers, or ENTER to clean up right away"
|
|
read -rt5 || true
|
|
docker stop "$MSSQL_CONTAINER_NAME"
|
|
docker rm -v "$MSSQL_CONTAINER_NAME"
|
|
}
|