Skip to content

Configuration of Microsoft SQL Server on Linux in a Docker container.

License

Notifications You must be signed in to change notification settings

nicoruti/mssqldocker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MSSQL 2019 Docker container

Image is hosted on Dockerhub.

Usage

Use the following command to start:

docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=<admin-password>' -e 'MSSQL_DB=<db-name>' -e 'MSSQL_USER=<username>' -e 'MSSQL_PASSWORD=<password>' -p 1433:1433 nicoruti/mssql:latest

Variables

  • ACCEPT_EULA: Must be 'Y' if you accept the MSSQL EULA
  • SA_PASSWORD: The system admin password
  • MSSQL_DB: The database name
  • MSSQL_USER: The database user to create
  • MSSQL_PASSWORD: The database user password

Note: Microsoft requires strong passwords, otherwise, the server does not start.

About

Configuration of Microsoft SQL Server on Linux in a Docker container.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 49.2%
  • Dockerfile 35.7%
  • TSQL 15.1%