Skip to content

Extension of the "mcr.microsoft.com/mssql/server" docker image to support initdb scripts & sqlpackage

License

Notifications You must be signed in to change notification settings

sysdynetechnologies/mssql-server

 
 

Repository files navigation

mssql-server

This image is an extension of the official mcr.microsoft.com/mssql/server Docker image

It adds functionality to initialize a fresh instance. When a container is started for the first time, it will execute any files with extensions .sh or .sql that are found in /docker-entrypoint-initdb.d. Files will be executed in alphabetical order. You can easily populate your SQL Server services by mounting scripts into that directory and provide custom images with contributed data.

Running this image

  • From Docker Hub
docker run -p 1433:1433 --name mssql -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Strong(!)Password' -v $PWD/initdb.d:/docker-entrypoint-initdb.d -d ghcr.io/sysdynetechnologies/mssql-server
  • From this repo using docker-compose:
docker-compose up -d --build

NOTE: You can adjust .env values to your needs.

Additional information:

  • Linux-based mssql-docker git repo
  • Running SQL Server on Linux.
  • Make sure that the .sh files have UNIX-style (LF) line endings. Depending on your platform and Git configuration, Git may change them to Windows-style (CR+LF). In this case, the container won't start, and you may see a non-informative error message like:
    standard_init_linux.go:195: exec user process caused "no such file or directory"'.
    

About

Extension of the "mcr.microsoft.com/mssql/server" docker image to support initdb scripts & sqlpackage

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • Dockerfile 58.8%
  • Shell 41.2%