Last active
March 22, 2018 18:03
-
-
Save maxfunke/ed1d79738ccac949ac0791d1f0212150 to your computer and use it in GitHub Desktop.
MSSQL via docker (e.g. on OSX)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pull mssql container | |
docker pull microsoft/mssql-server-linux | |
# run container, change password (strong enough) and port | |
docker run -d --name mssqlOnOSX -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=strongEnoughPassword123' -p 1433:1433 microsoft/mssql-server-linux | |
# see also: | |
# https://medium.com/@reverentgeek/sql-server-running-on-a-mac-3efafda48861 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment