Skip to content

Commit

Permalink
add shell script to start mssql docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
woylie committed Dec 1, 2017
1 parent d261469 commit dd9d051
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ If you have Docker installed, you can use the official [SQL Server Docker image]
To start the container, run:

```bash
docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=some!Password' -p 1433:1433 -d microsoft/mssql-server-linux:latest
./docker-mssql.sh
```

If you prefer to install SQL Server directly on your computer, you can find
Expand Down
7 changes: 7 additions & 0 deletions docker-mssql.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

docker run \
-e 'ACCEPT_EULA=Y' \
-e 'SA_PASSWORD=some!Password' \
-p 1433:1433 \
-d microsoft/mssql-server-linux:latest

0 comments on commit dd9d051

Please sign in to comment.