From d78753573259e3afc3cdca36d062c627751dcdb0 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 20 Jun 2024 14:18:14 -0400 Subject: [PATCH] Add start-infrastructure script --- start-infrastructure.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 start-infrastructure.sh diff --git a/start-infrastructure.sh b/start-infrastructure.sh new file mode 100644 index 0000000..d7a15c2 --- /dev/null +++ b/start-infrastructure.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +docker run \ + --cap-add SYS_PTRACE \ + -e 'ACCEPT_EULA=1' \ + -e 'MSSQL_SA_PASSWORD=P@ssword123!' \ + -p 1433:1433 \ + --name azuresqledge \ + -d mcr.microsoft.com/azure-sql-edge \ No newline at end of file