GitLab CI allows you to use Docker Engine to build and test docker-based projects.
This also allows to you to use docker-compose
and other docker-enabled tools.
One of the new trends in Continuous Integration/Deployment is to:
It's also useful when your application already has the Dockerfile
that can be used to create and test an image:
$ docker build -t my-image dockerfiles/
$ docker run my-docker-image /script/to/run/tests
$ docker tag my-image my-registry:5000/my-image
$ docker push my-registry:5000/my-image
This requires special configuration of GitLab Runner to enable docker
support during builds.
There are three methods to enable the use of docker build
and docker run
during builds; each with their own tradeoffs.
The simplest approach is to install GitLab Runner in shell
execution mode. GitLab Runner then executes build scripts as the gitlab-runner
user.
Install GitLab Runner.
During GitLab Runner installation select shell
as method of executing build scripts or use command:
$ sudo gitlab-ci-multi-runner register -n \
--url https://gitlab.com/ci \
--registration-token REGISTRATION_TOKEN \
--executor shell
--description "My Runner"
Install Docker Engine on server.
For more information how to install Docker Engine on different systems checkout the Supported installations.
Add gitlab-runner
user to docker
group:
$ sudo usermod -aG docker gitlab-runner
Verify that gitlab-runner
has access to Docker:
$ sudo -u gitlab-runner -H docker info
You can now verify that everything works by adding docker info
to .gitlab-ci.yml
:
before_script:
- docker info
build_image:
script:
- docker build -t my-docker-image .
- docker run my-docker-image /script/to/run/tests
You can now use docker
command and install docker-compose
if needed.
Note:
gitlab-runner
to the docker
group you are effectively granting gitlab-runner
full root permissions. For more information please read On Docker security: docker
group considered harmful.The second approach is to use the special docker-in-docker (dind) Docker image with all tools installed (docker
and docker-compose
) and run the build script in context of that image in privileged mode.
In order to do that, follow the steps:
Install GitLab Runner.
Register GitLab Runner from the command line to use docker
and privileged
mode:
sudo gitlab-ci-multi-runner register -n \
--url https://gitlab.com/ci \
--registration-token REGISTRATION_TOKEN \
--executor docker \
--description "My Docker Runner" \
--docker-image "docker:latest" \
--docker-privileged
The above command will register a new Runner to use the special docker:latest
image which is provided by Docker. Notice that it's using the privileged
mode to start the build and service containers. If you want to use docker-in-docker mode, you always have to use privileged = true
in your Docker containers.
The above command will create a config.toml
entry similar to this:
[[runners]]
url = "https://gitlab.com/ci"
token = TOKEN
executor = "docker"
[runners.docker]
tls_verify = false
image = "docker:latest"
privileged = true
disable_cache = false
volumes = ["/cache"]
[runners.cache]
Insecure = false
You can now use docker
in the build script (note the inclusion of the docker:dind
service):
image: docker:latest
services:
- docker:dind
before_script:
- docker info
build:
stage: build
script:
- docker build -t my-docker-image .
- docker run my-docker-image /script/to/run/tests
Docker-in-Docker works well, and is the recommended configuration, but it is not without its own challenges:
--docker-privileged
, you are effectively disabling all of the security mechanisms of containers and exposing your host to privilege escalation which can lead to container breakout. For more information, check out the official Docker documentation on Runtime privilege and Linux capabilities.docker:dind
uses --storage-driver vfs
which is the slowest form offered.An example project using this approach can be found here: https://gitlab.com/gitlab-examples/docker.
The third approach is to bind-mount /var/run/docker.sock
into the container so that docker is available in the context of that image.
In order to do that, follow the steps:
Install GitLab Runner.
Register GitLab Runner from the command line to use docker
and share /var/run/docker.sock
:
sudo gitlab-ci-multi-runner register -n \
--url https://gitlab.com/ci \
--registration-token REGISTRATION_TOKEN \
--executor docker \
--description "My Docker Runner" \
--docker-image "docker:latest" \
--docker-volumes /var/run/docker.sock:/var/run/docker.sock
The above command will register a new Runner to use the special docker:latest
image which is provided by Docker. Notice that it's using the Docker daemon of the Runner itself, and any containers spawned by docker commands will be siblings of the Runner rather than children of the runner. This may have complications and limitations that are unsuitable for your workflow.
The above command will create a config.toml
entry similar to this:
[[runners]]
url = "https://gitlab.com/ci"
token = REGISTRATION_TOKEN
executor = "docker"
[runners.docker]
tls_verify = false
image = "docker:latest"
privileged = false
disable_cache = false
volumes = ["/var/run/docker.sock", "/cache"]
[runners.cache]
Insecure = false
You can now use docker
in the build script (note that you don't need to include the docker:dind
service as when using the Docker in Docker executor):
image: docker:latest
before_script:
- docker info
build:
stage: build
script:
- docker build -t my-docker-image .
- docker run my-docker-image /script/to/run/tests
While the above method avoids using Docker in privileged mode, you should be aware of the following implications:
docker rm -f $(docker ps -a -q)
it would remove the GitLab Runner containers.docker run --rm -t -i -v $(pwd)/src:/home/app/src test-image:latest run_app_tests
Note: This feature requires GitSwarm 2016.2 and GitLab Runner 1.2.
Once you've built a Docker image, you can push it up to the built-in GitSwarm Container Registry. For example, if you're using docker-in-docker on your runners, this is how your .gitlab-ci.yml
could look:
build:
image: docker:latest
services:
- docker:dind
stage: build
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.example.com
- docker build -t registry.example.com/group/project:latest .
- docker push registry.example.com/group/project:latest
You have to use the credentials of the special gitlab-ci-token
user with its password stored in $CI_BUILD_TOKEN
in order to push to the Registry connected to your project. This allows you to automate building and deployment of your Docker images.
Here's a more elaborate example that splits up the tasks into 4 pipeline stages, including two tests that run in parallel. The build is stored in the container registry and used by subsequent stages, downloading the image when needed. Changes to master
also get tagged as latest
and deployed using an application-specific deploy script:
image: docker:latest
services:
- docker:dind
stages:
- build
- test
- release
- deploy
variables:
CONTAINER_TEST_IMAGE: registry.example.com/my-group/my-project:$CI_BUILD_REF_NAME
CONTAINER_RELEASE_IMAGE: registry.example.com/my-group/my-project:latest
before_script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.example.com
build:
stage: build
script:
- docker build --pull -t $CONTAINER_TEST_IMAGE .
- docker push $CONTAINER_TEST_IMAGE
test1:
stage: test
script:
- docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /script/to/run/tests
test2:
stage: test
script:
- docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /script/to/run/another/test
release-image:
stage: release
script:
- docker pull $CONTAINER_TEST_IMAGE
- docker tag $CONTAINER_TEST_IMAGE $CONTAINER_RELEASE_IMAGE
- docker push $CONTAINER_RELEASE_IMAGE
only:
- master
deploy:
stage: deploy
script:
- ./deploy.sh
only:
- master
Some things you should be aware of when using the Container Registry:
before_script
will run it before each build job.docker build --pull
makes sure that Docker fetches any changes to base images before building just in case your cache is stale. It takes slightly longer, but means you don’t get stuck without security patches to base images.docker pull
before each docker run
makes sure to fetch the latest image that was just built. This is especially important if you are using multiple runners that cache images locally. Using the git SHA in your image tag makes this less necessary since each build will be unique and you shouldn't ever have a stale image, but it's still possible if you re-build a given commit after a dependency has changed.latest
in case there are multiple builds happening simultaneously.