using Mssql server on docker
First of all, please ensure you install docker toolbox.
Once you have done that, ensure you run the following command. If you setup your command prompt to use docker, if not please follow the instruction here.
Step 1
SET ACCEPT_EULA=Y
SET SA_PASSWORD=P@ssword01
SET MSSQL_PID=Developer
Run docker
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssword01" -p 1433:1433 -d microsoft/mssql-server-linux:latest
Please note: ensure to use double quote for windows, other wise it would not work.
if you face any issues, please run docker log
Comments