How To Run Docker in Docker Container [3 Easy Methods]
- Last Updated On: August 27, 2020
- By: Bibin Wilson
In this blog, I will walk you through the steps required to run docker in docker using three different methods.
Docker in Docker Use Cases
Here are a few use cases to run docker inside a docker container.
- One potential use case for docker in docker is for the CI pipeline, where you need to build and push docker images to a container registry after a successful code build.
- Building Docker images with a VM is pretty straight forward. However, when you plan to use Jenkins docker based dynamic agents for your CI/CD pipelines, docker in docker comes as a must-have functionality.
- Sandboxed environments.
- For experimental purposes on your local development workstation.
Run Docker in a Docker Container
There are three ways to achieve docker in docker
- Run docker by mounting docker.sock (DooD Method)
- dind method
- Using Nestybox sysbox Docker runtime
Let’s have a look at each option in detail. Make sure you have docker installed in your host to try this setup.
Method 1: Docker in Docker Using [/var/run/docker.sock]
What is /var/run/docker.sock?
/var/run/docker.sock
is the default Unix socket. Sockets are meant for communication between processes on the same host. Docker daemon by default listens to docker.sock. If you are on the same host where Docker daemon is running, you can use the /var/run/docker.sock
to manage containers.
For example, if you run the following command, it would return the version of docker engine.
curl --unix-socket /var/run/docker.sock http://localhost/version
Now that you have a bit of understanding of what is docker.sock, let’s see how to run docker in docker using docker.sock
To run docker inside docker, all you have to do it just run docker with the default Unix socket docker.sock
as a volume.
For example,
docker run -v /var/run/docker.sock:/var/run/docker.sock \
-ti docker-image
Just a word of caution: If your container gets access to docker.sock, it means it has more privileges over your docker daemon. So when used in real projects, understand the security risks, and use it.
Now, from within the container, you should be able to execute docker commands for building and pushing images to the registry.
Here, the actual docker operations happen on the VM host running your base docker container rather than from within the container. Meaning, even though you are executing the docker commands from within the container, you are instructing the docker client to connect to the VM host docker-engine through docker.sock
To test his setup, use the official docker image from the docker hub. It has docker the docker binary in it.
Follow the steps given below to test the setup.
Step 1: Start Docker container in interactive mode mounting the docker.sock
as volume. We will use the official docker image.
docker run -v /var/run/docker.sock:/var/run/docker.sock -ti docker
Step 2: Once you are inside the container, execute the following docker command.
docker pull ubuntu
Step 3: When you list the docker images, you should see the ubuntu image along with other docker images in your host VM.
docker images
Step 4: Now create a Dockerfile inside test directory.
mkdir test && cd test
vi Dockerfile
Copy the following Dockerfile contents to test the image build from within the container.
FROM ubuntu:18.04
LABEL maintainer="Bibin Wilson <[email protected]>"
RUN apt-get update && \
apt-get -qy full-upgrade && \
apt-get install -qy curl && \
apt-get install -qy curl && \
curl -sSL https://get.docker.com/ | sh
Build the Dockerfile
docker build -t test-image .
Method 2: Docker in Docker Using dind
This method actually creates a child container inside a container. Use this method only if you really want to have the containers and images inside the container. Otherwise, I would suggest you use the first approach.
For this, you just need to use the official docker image with dind
tag. The dind image is baked with required utilities for Docker to run inside a docker container.
Follow the steps to test the setup.
Note: This requires your container to be run in privileged mode.
Step 1: Create a container named dind-test
with docker:dind
image
docker run --privileged -d --name dind-test docker:dind
Step 2: Log in to the container using exec.
docker exec -it dind-test /bin/sh
Now, perform steps 2 to 4 from the previous method and validate docker command-line instructions and image build.
Method 3: Docker in Docker Using Sysbox Runtime
Method 1 & 2 has some disadvantages in terms of security because of running the base containers in privileged mode. Nestybox tries to solve that problem by having a sysbox Docker runtime.
If you create a container using Nestybox sysbox runtime, it can create virtual environments inside a container that is capable of running systemd, docker, kubernetes without having privileged access to the underlying host system.
Explaining sysbox demands significant comprehension so I’ve excluded from the scope of this post. Please refer this page to understand fully about sysbox
To get a glimpse, let us now try out an example
Step 1: Install sysbox runtime environment. Refer to this page to get the latest official instructions on installing sysbox runtime.
Step 2: Once you have the sysbox runtime available, all you have to do is start the docker container with a sysbox runtime flag as shown below. Here we are using the official docker dind image.
docker run --runtime=sysbox-runc --name sysbox-dind -d docker:dind
Step 3: Now take an exec session to the sysbox-dind container.
docker exec -it sysbox-dind /bin/sh
Now, you can try building images with the Dockerfile as shown in the previous methods.
Key Considerations
- Use Docker in Docker only if it is a requirement. Do the POCs and enough testing before migrating any workflow to the Docker-in-Docker method.
- While using containers in privileged mode, make sure you get the necessary approvals from enterprise security teams on what you are planning to do.
- When using Docker in Docker with kubernetes pods there are certain challenges. Refer to this blog to know more about it.
- If you plan to use Nestybox (Sysbox), make sure it is tested and approved by enterprise architects/security teams.
FAQ’s
Here are some frequently asked docker in docker questions.
Is running Docker in Docker secure?
Running docker in docker using docker.sock
and dind
method is less secure as it has complete privileges over the docker daemon
How to run docker in docker in Jenkins?
You can use the Jenkins dynamic docker agent setup and mount the docker.sock to the agent container to execute docker commands from within the agent container.
Bibin Wilson
Other Interesting Blogs
How To Setup Kube State Metrics on Kubernetes
In this blog we will look at what is Kube State Metrics and its setup on Kubernetes. What is Kube State Metrics?
15 Best Websites to Learn Coding Online – Self Paced Courses
Programming is a little intimidating at the beginning but as you start practicing it, you will start loving it. By teaching yourself
How To Backup Jenkins Data and Configurations
It is very important to have Jenkins backup with its data and configurations. It includes, job configs, build logs, plugins, plugin configuration