Docker Keep Exiting (MAC SQL Deployment by MAC OS)

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?

enter image description here

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

+8
source share
1 answer

I recently ran into this problem on Windows. Changing the quotes to fix the problem.

0
source

Source: https://habr.com/ru/post/1667371/


All Articles