mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
f430e5b599
On macOS, we use the `azure-sql-edge` image, which doesn't contain `sqlcmd`. To work around this, we can use another container which _does_ contain the `sqlcmd` binary to verify that MS SQL Server is up. This was also broken on Linux anyway. This also updates the PostgreSQL image, in line with _databases.yaml_. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7204 GitOrigin-RevId: ad974cd353c348ec055a153cbba5cb39d85e0967
66 lines
2.0 KiB
Bash
66 lines
2.0 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_HOST=127.0.0.1
|
|
MSSQL_PASSWORD=hasuraMSSQL1
|
|
MSSQL_VOLUME_NAME='hasura-dev-mssql'
|
|
MSSQL_CONTAINER_NAME="hasura-dev-mssql-$MSSQL_PORT"
|
|
# shellcheck disable=SC2034 # this variable is used in scripts sourcing this one
|
|
MSSQL_CONN_STR="DRIVER={ODBC Driver 18 for SQL Server};SERVER=$MSSQL_HOST,$MSSQL_PORT;Uid=sa;Pwd=$MSSQL_PASSWORD;Encrypt=optional"
|
|
|
|
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=mcr.microsoft.com/mssql/server:2019-latest
|
|
fi
|
|
|
|
######################
|
|
# Functions #
|
|
######################
|
|
|
|
function mssql_launch_container {
|
|
echo_pretty "Launching MSSQL container: $MSSQL_CONTAINER_NAME"
|
|
docker volume create "$MSSQL_VOLUME_NAME"
|
|
docker run \
|
|
--name $MSSQL_CONTAINER_NAME \
|
|
--platform "$MSSQL_PLATFORM" \
|
|
--publish="${MSSQL_HOST}:${MSSQL_PORT}:1433" \
|
|
--volume="${MSSQL_VOLUME_NAME}:/var/opt/mssql" \
|
|
--env=ACCEPT_EULA=1 \
|
|
--env="MSSQL_SA_PASSWORD=$MSSQL_PASSWORD" \
|
|
--detach \
|
|
"$MSSQL_CONTAINER_IMAGE"
|
|
}
|
|
|
|
function mssql_wait {
|
|
echo -n "Waiting for mssql to come up"
|
|
until ( docker run --rm -it --net=host mcr.microsoft.com/mssql-tools /opt/mssql-tools/bin/sqlcmd -S "${MSSQL_HOST},${MSSQL_PORT}" -U SA -P "$MSSQL_PASSWORD" -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"
|
|
docker volume rm "$MSSQL_VOLUME_NAME"
|
|
}
|