In this video, I will show you how to install MSSQL Server on Docker Container on Linux Ubuntu Server. This method of installation MSSQL Server on docker done by using Linux command. Linux Ubuntu Server is installed on VMWare Workstation.
3 Comments
Leave a Reply
You must be logged in to post a comment.
Main Commands:
$ sudo apt install docker.io
$ sudo docker pull microsoft/mssql-server-linux
$ sudo docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=MyStrongPassword!12345' -p 1433:1433 -v /user/my/db:/var/opt/mssql -d microsoft/mssql-server-linux
$ sudo docker ps
$ sudo docker stop <1st 4 digints of ID>
$ sudo docker start <1st 4 digints of ID>
Please increase the size of the font, it is almost impossible to see.
When I run sudo docker ps , its not showing the running container