230 MsSql in Docker - chempkovsky/CS82ANGULAR GitHub Wiki

Notes

Steps required to accomplish the task

Final Docker Image

Notes

Pull Docker image

  • run the command
docker pull mcr.microsoft.com/mssql/server:2019-latest

Run Docker image

docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=myPss@wrd" ^
   -p 1433:1433 --name sql-phone-dictionary --hostname HyperW10 ^
   -d mcr.microsoft.com/mssql/server:2019-latest  

Final Docker Image

  • run the command
docker pull mcr.microsoft.com/mssql/server:2019-latest