I am trying to deploy an MS SQL server on my MAC. There are several alternatives for this.
Here I use docker: I checked the MS-SQL site and I executed this code:
docker run -e
'ACCEPT_EULA=Y'
-e 'SA_PASSWORD=<YourStrong!Passw0rd>' -p 1433:1433
-d microsoft/mssql-server-linux
However, the container continues to stop on its own. Am I missing something here?

The docker version I'm using: Version 1.13.0 (15072)
source
share