Skip to content

Commit 328f532

Browse files
authored
2022
1 parent a2a98dc commit 328f532

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/mssql/server:2019-latest
1+
FROM mcr.microsoft.com/mssql/server:2022-latest
22
ARG ACCEPT_EULA=Y
33
ENV ACCEPT_EULA=N
44
ARG SA_PASSWORD=IMISuserP@s
@@ -13,5 +13,4 @@ COPY script/* /app/
1313
COPY sql /app/sql
1414
WORKDIR /app
1515
RUN chmod a+x /app/*.sh
16-
USER mssql
1716
CMD /bin/bash ./entrypoint.sh

script/run-initialization.sh

+10-6
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,35 @@
44
# Wait to be sure that SQL Server came up
55
sleep 60s
66

7+
MSSQL_TOOLS_BASE="/opt/mssql-tools"
8+
MSSQL_TOOLS_VERSION=$(ls -d ${MSSQL_TOOLS_BASE}* 2>/dev/null | sort -V | tail -n 1 | sed "s|${MSSQL_TOOLS_BASE}||")
9+
SQLCMD_PATH="${MSSQL_TOOLS_BASE}${MSSQL_TOOLS_VERSION}/bin/sqlcmd"
10+
711

812
# DATABSE initialisation
913

1014
echo "Database initialisaton"
1115
# if the table does not exsit it will create the table
1216

1317
# get "1" if the database exist : tr get only the integer, cut only the first integer (the second is the number of row affected)
14-
data=$(/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -Q "SELECT COUNT(*) FROM master.dbo.sysdatabases WHERE name = N'$DB_NAME'" | tr -dc '0-9'| cut -c1 )
18+
data=$($SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -Q "SELECT COUNT(*) FROM master.dbo.sysdatabases WHERE name = N'$DB_NAME'" | tr -dc '0-9'| cut -c1 )
1519
if [[ ${data} -eq "0" ]]; then
1620
echo 'download full demo database'
1721
echo 'create database user'
18-
/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -Q "CREATE LOGIN $DB_USER WITH PASSWORD='${SA_PASSWORD}', CHECK_POLICY = OFF"
22+
$SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -Q "CREATE LOGIN $DB_USER WITH PASSWORD='${SA_PASSWORD}', CHECK_POLICY = OFF"
1923
echo "merging files"
2024
./concatenate_files.sh
2125
echo 'create database'
2226
#/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P $SA_PASSWORD -Q "DROP DATABASE IF EXISTS $DB_NAME"
23-
/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -Q "CREATE DATABASE $DB_NAME"
27+
$SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -Q "CREATE DATABASE $DB_NAME"
2428

2529
if [[ "$INIT_MODE" = "demo" ]]; then
26-
/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -i output/fullDemoDatabase.sql -d $DB_NAME | grep . | uniq -c
30+
$SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -i output/fullDemoDatabase.sql -d $DB_NAME | grep . | uniq -c
2731
else
28-
/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -i output/fullEmptyDatabase.sql -d $DB_NAME | grep . | uniq -c
32+
$SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -i output/fullEmptyDatabase.sql -d $DB_NAME | grep . | uniq -c
2933
fi
3034
echo ' give to the user the access to the database'
31-
/opt/mssql-tools/bin/sqlcmd18 -S localhost -U SA -P $SA_PASSWORD -Q "EXEC sp_changedbowner '$DB_USER'" -d $DB_NAME
35+
$SQLCMD_PATH -S localhost -U SA -P $SA_PASSWORD -Q "EXEC sp_changedbowner '$DB_USER'" -d $DB_NAME
3236
else
3337
echo "database already existing, nothing to do"
3438
fi

0 commit comments

Comments
 (0)