A docker image to run a convenient SQL SERVER for developers
1.1K
This image allows you to quickly start a SQL Server 2017 server in Docker for the testing needs of development teams. It uses Google Cloud Storage to retrieve SQL files to create tables and databases.
To start you're gonna need:
.env containing the required env variables :touch .env
| Variable Name | Description | Required | Default |
|---|---|---|---|
| MSSQLDEV_GOOGLE_PROJECT_NAME | The name (ID) of your GCP project | yes | |
| MSSQLDEV_GCP_SA_EMAIL | Google cloud service account e-mail | yes | |
| MSSQLDEV_GCP_SA_KEY_PATH | Path to the service account json key (mounted as volume or copied inside the container) | yes or default | /home/mssql/secrets |
| MSSQLDEV_BUCKET_NAME | Name of the bucket containing your .sql files | yes | |
| ACCEPT_EULA | Wether or not you accept MSSQL EULA | yes (Must be yes for the server to start) | |
| SA_PASSWORD | Password of the user SA of MSSQL Server | yes |
Example of .env file :
MSSQLDEV_GOOGLE_PROJECT_NAME=myproject
MSSQLDEV_GCP_SA_EMAIL=myserviceaccount@myproject.iam.gserviceaccount.com
MSSQLDEV_GCP_SA_KEY_PATH=/home/mssql/secrets
ACCEPT_EULA=Y
SA_PASSWORD=MyStrongPassword@
- databases
-- my_db_1_.sql
- tables
-- my_table_1.sql
docker build . -t ajinnov/mssql-server-linux-dev:release-1.0.0
... or use the public build :
https://hub.docker.com/r/ajinnov/mssql-server-linux-dev
ajinnov/mssql-server-linux-dev:release-1.0.0
docker run -d -v $(pwd)/secrets:/home/mssql/secrets -v mssql_for_dev_data:/var/opt/mssql \
--env-file=$(pwd)/.env \
--name sql1 -p 1434:1433 \
ajinnov/mssql-server-linux-dev:release-1.0.0
If you want to update your database, simply add the files in your bucket and run
docker exec -it MY_CONTAINER_NAME /home/mssql/update_sql_from_gcs.sh
This image is based on mcr.microsoft.com/mssql/server:2017-latest
Content type
Image
Digest
Size
604.4 MB
Last updated
over 6 years ago
docker pull ajinnov/mssql-server-linux-dev