Created
July 5, 2024 03:54
-
-
Save ljchuello/50827ea5513aecaaaba58c8eca5c55da to your computer and use it in GitHub Desktop.
Install and run SQL Server on Linux (Docker)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://hub.docker.com/r/microsoft/mssql-server | |
docker run \ | |
-e 'ACCEPT_EULA=Y' \ | |
-e 'MSSQL_SA_PASSWORD=MySuperPass' \ | |
-e 'MSSQL_PID=Developer' \ | |
--name MSSQL-Server \ | |
-v /root/mssql-data:/var/opt/mssql/data \ | |
-p 1433:1433 \ | |
-d mcr.microsoft.com/mssql/server:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment