We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
marcingminski
Learn more about funding links in repositories.
Report abuse
1 parent fd6e3ba commit 1b3543cCopy full SHA for 1b3543c
DOCKER/CreateSqlInstance.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+for i in $(seq 1 $2);
4
+do
5
+let "C = $i + $1"
6
+docker run --cpus="0.5" --memory="2g" --memory-swap="4g" -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Testing1122" -p 49$C:1433 --name SqlWatch-$C -h SqlWatch-$C -d mcr.microsoft.com/mssql/server:2019-CU11-ubuntu-20.04;
7
+done
0 commit comments