Click here to Skip to main content
15,879,535 members
Articles / Containers / Docker

Using Docker for Local SQL Server Development

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
4 Feb 2020CPOL4 min read 25.9K   8   1
This post outlines how to use Docker image for local SQL Server development.

Using docker images for development is a super power, you don’t need SQL installed on your development machine, yet you still have the full power of SQL there for you when you need it. Also, if you want specific versions for different projects, you can simply spin up the version you want, and keep all the configuration inside a dockerfile in your repository for that project.

In this article, we are going to:

  1. Download the latest SQL Server docker image locally
  2. Create a docker container and connect to it from SQL Server Management Studio
  3. Setup a volume mount to store the database files outside of the container so we can persist the data when we tear down our container
  4. Set this up with a docker-compose file

1. Download the SQL Server Docker Image

We need to pull down the SQL Server docker image from the container registry with the following command:

docker pull mcr.microsoft.com/mssql/server

You should see something similar to the following image:

Image 1

2. Run the Container

Now that we have the SQL Server image locally, it’s time to run the container.

We need to specify several parameters to do this:

  • -e or –env - This is where we set the environment variables needed by the container
  • -p or –publish - This publishes a containers ports to the host ports specified
  • –name - Sets the name of the container
  • -d or –detach - Runs the container in the background (detached)

SQL Server needs us to set 2 environment variables, first to Accept the EULA agreement, and secondly to set the SA password.

docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Sample123$" -p 1433:1433 
--name sqlserver -d mcr.microsoft.com/mssql/server:latest

The output of this looks like this:

Image 2

You can see that the command spun up the container and returned the new container ID, then stayed running in the background, leaving our terminal free to run more commands (this is the detached parameter we ran).

Check What Containers Are Running

docker container ls

As you can see below, we now have our sqlserver container running with the same container ID that it displayed before, it shortened the ID though, so we only see the first part.

Image 3

Connect to SQL Server from Management Studio

Now let's connect to the container with SQL Management Studio, and create some tables.

Fire up Management Studio, and connect to localhost, with username sa and the password we set in the docker run command Sample123$.

You should now be connected to the database running in the container, you can go ahead and add a database and a table, and insert some data. But when we remove the container, and then run the container again, our data will be gone.

Remove the Container

To remove the container, we first must stop the container, and then we can use the docker container rm container_name command to remove it.

docker container stop /sqlserver 
docker container rm /sqlserver

Check the Container Has Gone

Now when we run docker container ls, we see the container is gone.

docker container ls

Image 4

Run the Container Again and Check the Data Is No Longer There

Now we can run the exact same docker run command as before:

docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Sample123$" -p 1433:1433 
--name sqlserver -d mcr.microsoft.com/mssql/server:latest

Check that it is running with docker container ls.

Connect to SQL Server from Management Studio again as before

Connect to the database with Management Studio and we can see that the database has gone. To persist this data, we need to setup a volume mount point, and point our container there.

3. Create Volume Mount Point for Persistent Data

We can create a volume mount point which will make a location on the local disk the stored location for the database files inside the container, this way each time we remove the container, we will be able to retain:

docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Password123" -p 1433:1433 
--name sqlserver -v C:\Users\Owen\DockerVolumes\sqlserver:/var/opt/mssql/data 
-d mcr.microsoft.com/mssql/server:latest

4. Set This Up With a Docker-Compose File

To save having to remember/type all of these parameters each time we want to use our SQL database, we can do the exact same thing with a docker-compose.yaml file. This will mean we can just run a single simple command and all the parameters will be contained in the yaml file.

Realistically, this is much easier, as generally I have so many containers I don’t want to have to remember everything about each of them.

Take the below code, save it as docker-compose.yml in your project root.

version: '3.4'

services:
  sqlserver:
    image: mcr.microsoft.com/mssql/server
    container_name: sqlserver
    environment:
      - ACCEPT_EULA=Y
      - SA_PASSWORD=Password123
    ports:
      - "1433:1433"
    volumes:
      - C:\Users\Owen\DockerVolumes\sqlserver:/var/opt/mssql/data

Now instead of having to type the long command from before, all we have to type is the following:

docker-compose up

Connect to the Database With Management Studio

Now you can connect to the database with Management Studio, add data and use as normal. You can then stop and remove the container and retain all the data in the volume you specified. This data can be test data that you store somewhere central so that your whole team can share it and of course version it, or somewhere local to you.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United Kingdom United Kingdom
I have been working in software development for over 16 years, during that time I have worn many hats.

I have worked as a Software Engineer, Architect, Agile Coach and Trainer. I’ve created teams, I’ve lead teams, but my main goal is to help teams build great software and enjoy the process.

I help a whole range of businesses – from startups with just an idea who want to build a team to take that idea into reality and FTSE 100 businesses who need to optimise existing teams – I train, mentor and coach them to success.

If you happen to know of anybody who could benefit from results like this, then please go to my contact page and get in touch.

Owen Davies

Comments and Discussions

 
Questionfirst image of "docker container ls" is an empty list Pin
sillyburgler23-Jun-20 22:54
sillyburgler23-Jun-20 22:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.