Skip to content

Instantly share code, notes, and snippets.

@icarrr
Created November 14, 2019 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icarrr/c16313e89d20126a1c3c824266727239 to your computer and use it in GitHub Desktop.
Save icarrr/c16313e89d20126a1c3c824266727239 to your computer and use it in GitHub Desktop.
Run Docker MSSQL Server on MacOS
#!/bin/bash
docker run --name sql-server -d -it -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Str0ng.Password' -e 'MSSQL_PID=Express' -p 1433:1433 mcr.microsoft.com/mssql/server:2017-latest-ubuntu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment