From 769d83922055314c777179acc744df2a3b8eb813 Mon Sep 17 00:00:00 2001 From: adarsh-jaiss Date: Fri, 24 May 2024 00:26:36 +0530 Subject: [PATCH] added mssql docker instance for local testing in example Signed-off-by: adarsh-jaiss --- example/mssql/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/mssql/README.md b/example/mssql/README.md index 21ed49e..008b8e3 100644 --- a/example/mssql/README.md +++ b/example/mssql/README.md @@ -8,6 +8,11 @@ Before you begin, ensure you have the following: - Go installed on your machine. - Access to a Microsoft SQL Server instance. +- You can run it locally using this command : + + ``` + docker run -p 14330:1433 -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=root' -d chriseaton/adventureworks:latest + ``` - Environment variable `DB_PASSWORD` set to your database password. ## Getting Started