GitLab Runner can use Docker to run builds on user provided images. This is possible with the use of Docker executor.
The Docker executor when used with GitLab CI, connects to Docker Engine
and runs each build in a separate and isolated container using the predefined
image that is set up in .gitlab-ci.yml
and in accordance in
config.toml
.
That way you can have a simple and reproducible build environment that can also run on your workstation. The added benefit is that you can test all the commands that we will explore later from your shell, rather than having to test them on a dedicated CI server.
Table of Contents generated with DocToc
- Workflow
- The
image
keyword - The
services
keyword - Define image and services from
.gitlab-ci.yml
- Define image and services in
config.toml
- Define an image from a private Docker registry
- Accessing the services
- Configuring services
- The builds and cache storage
- The persistent storage
- The privileged mode
- The ENTRYPOINT
- Docker vs Docker-SSH
The Docker executor divides the build into multiple steps:
- Prepare: Create and start the services.
- Pre-build: Clone, restore cache and download artifacts from previous stages. This is run on a special Docker Image.
- Build: User build. This is run on the user-provided docker image.
- Post-build: Create cache, upload artifacts to GitLab. This is run on a special Docker Image.
The special Docker Image is based on Alpine Linux and contains all the tools required to run the prepare step the build: the Git binary and the Runner binary for supporting caching and artifacts. You can find the definition of this special image in the official Runner repository.
The image
keyword is the name of the Docker image that is present in the
local Docker Engine (list all images with docker images
) or any image that
can be found at Docker Hub. For more information about images and Docker
Hub please read the Docker Fundamentals documentation.
In short, with image
we refer to the docker image, which will be used to
create a container on which your build will run.
If you don't specify the namespace, Docker implies library
which includes all
official images. That's why you'll see
many times the library
part omitted in .gitlab-ci.myl
and config.toml
.
For example you can define an image like image: ruby:2.1
, which is a shortcut
for image: library/ruby:2.1
.
Then, for each Docker image there are tags, denoting the version of the image.
These are defined with a colon (:
) after the image name. For example, for
Ruby you can see the supported tags at https://hub.docker.com/_/ruby/. If you
don't specify a tag (like image: ruby
), latest
is implied.
The services
keyword defines just another Docker image that is run during
your build and is linked to the Docker image that the image
keyword defines.
This allows you to access the service image during build time.
The service image can run any application, but the most common use case is to
run a database container, eg. mysql
. It's easier and faster to use an
existing image and run it as an additional container than install mysql
every
time the project is built.
You can see some widely used services examples in the relevant documentation of CI services examples.
To better understand how the container linking works, read Linking containers together.
To summarize, if you add mysql
as service to your application, this image
will then be used to create a container that is linked to the build container.
According to the workflow this is the first step that is performed
before running the actual builds.
The service container for MySQL will be accessible under the hostname mysql
.
So, in order to access your database service you have to connect to the host
named mysql
instead of a socket or localhost
.
You can simply define an image that will be used for all jobs and a list of services that you want to use during build time.
image: ruby:2.2
services:
- postgres:9.3
before_script:
- bundle install
test:
script:
- bundle exec rake spec
It is also possible to define different images and services per job:
before_script:
- bundle install
test:2.1:
image: ruby:2.1
services:
- postgres:9.3
script:
- bundle exec rake spec
test:2.2:
image: ruby:2.2
services:
- postgres:9.4
script:
- bundle exec rake spec
Look for the [runners.docker]
section:
[runners.docker]
image = "ruby:2.1"
services = ["mysql:latest", "postgres:latest"]
The image and services defined this way will be added to all builds run by
that Runner, so even if you don't define an image
inside .gitlab-ci.yml
,
the one defined in config.toml
will be used.
Starting with GitLab Runner 0.6.0, you are able to define images located to private registries that could also require authentication.
All you have to do is be explicit on the image definition in .gitlab-ci.yml
.
image: my.registry.tld:5000/namepace/image:tag
In the example above, GitLab Runner will look at my.registry.tld:5000
for the
image namespace/image:tag
.
If the repository is private you need to authenticate your GitLab Runner in the registry. Read more on using a private Docker registry.
Let's say that you need a Wordpress instance to test some API integration with your application.
You can then use for example the tutum/wordpress as a service image in your
.gitlab-ci.yml
:
services:
- tutum/wordpress:latest
When the build is run, tutum/wordpress
will be started first and you will have
access to it from your build container under the hostname tutum__wordpress
or tutum-wordpress
.
The GitLab Runner creates two alias hostnames for the service that you can use alternatively. The aliases are taken from the image name following these rules:
- Everything after
:
is stripped - For the first alias, the slash (
/
) is replaced with double underscores (__
) - For the second alias, the slash (
/
) is replaced with a single dash (-
)
Many services accept environment variables which allow you to easily change database names or set account names depending on the environment.
GitLab Runner 0.5.0 and up passes all YAML-defined variables to the created service containers.
For all possible configuration variables check the documentation of each image provided in their corresponding Docker hub page.
Note:
All variables will be passed to all services containers. It's not designed to distinguish which variable should go where.
Secure variables are only passed to the build container.
Since version 1.5 GitLab Runner mounts a /build
directory to all stared services.
See an issue: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1520
See the specific documentation for using PostgreSQL as a service.
See the specific documentation for using MySQL as a service.
After the service is started, GitLab Runner waits some time for the service to be responsive. Currently, the Docker executor tries to open a TCP connection to the first exposed service in the service container.
You can see how it is implemented in this Dockerfile.
The Docker executor by default stores all builds in
/builds/<namespace>/<project-name>
and all caches in /cache
(inside the
container).
You can overwrite the /builds
and /cache
directories by defining the
builds_dir
and cache_dir
options under the [[runners]]
section in
config.toml
. This will modify where the data are stored inside the container.
If you modify the /cache
storage path, you also need to make sure to mark this
directory as persistent by defining it in volumes = ["/my/cache/"]
under the
[runners.docker]
section in config.toml
.
Read the next section of persistent storage for more information.
The Docker executor can provide a persistent storage when running the containers.
All directories defined under volumes =
will be persistent between builds.
The volumes
directive supports 2 types of storage:
<path>
- the dynamic storage. The<path>
is persistent between subsequent runs of the same concurrent job for that project. The data is attached to a custom cache container:runner-<short-token>-project-<id>-concurrent-<job-id>-cache-<unique-id>
.<host-path>:<path>[:<mode>]
- the host-bound storage. The<path>
is bind to<host-path>
on the host system. The optional<mode>
can specify that this storage is read-only or read-write (default).
If you make the /builds
to be the host-bound storage, your builds will be stored in:
/builds/<short-token>/<concurrent-id>/<namespace>/<project-name>
, where:
<short-token>
is a shortened version of the Runner's token (first 8 letters)<concurrent-id>
is a unique number, identifying the local job ID on the particular Runner in context of the project
The Docker executor supports a number of options that allows to fine tune the
build container. One of these options is the privileged
mode.
The configured privileged
flag is passed to the build container and all
services, thus allowing to easily use the docker-in-docker approach.
First, configure your Runner (config.toml) to run in privileged
mode:
[[runners]]
executor = "docker"
[runners.docker]
privileged = true
Then, make your build script (.gitlab-ci.yml
) to use Docker-in-Docker
container:
image: docker:git
services:
- docker:dind
build:
script:
- docker build -t my-image .
- docker push my-image
The Docker executor doesn't overwrite the ENTRYPOINT
of a Docker image.
That means that if your image defines the ENTRYPOINT
and doesn't allow to run
scripts with CMD
, the image will not work with the Docker executor.
With the use of ENTRYPOINT
it is possible to create special Docker image that
would run the build script in a custom environment, or in secure mode.
You may think of creating a Docker image that uses an ENTRYPOINT
that doesn't
execute the build script, but does execute a predefined set of commands, for
example to build the docker image from your directory. In that case, you can
run the build container in privileged mode, and make
the build environment of the Runner secure.
Consider the following example:
-
Create a new Dockerfile:
FROM docker:dind ADD / /entrypoint.sh ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
-
Create a bash script (
entrypoint.sh
) that will be used as theENTRYPOINT
:#!/bin/sh dind docker daemon --host=unix:///var/run/docker.sock \ --host=tcp://0.0.0.0:2375 \ --storage-driver=vf & docker build -t "$BUILD_IMAGE" . docker push "$BUILD_IMAGE"
-
Push the image to the Docker registry.
-
Run Docker executor in
privileged
mode. Inconfig.toml
define:[[runners]] executor = "docker" [runners.docker] privileged = true
-
In your project use the following
.gitlab-ci.yml
:variables: BUILD_IMAGE: my.image build: image: my/docker-build:image script: - Dummy Script
This is just one of the examples. With this approach the possibilities are limitless.
Note: The docker-ssh executor is deprecated and no new features will be added to it
We provide a support for a special type of Docker executor, namely Docker-SSH. Docker-SSH uses the same logic as the Docker executor, but instead of executing the script directly, it uses an SSH client to connect to the build container.
Docker-ssh then connects to the SSH server that is running inside the container using its internal IP.