Skip to content

illuin-tech/docker-gitlab-ci-multi-runner

 
 

Repository files navigation

Docker Repository on Quay.io

digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

Introduction

Dockerfile to create a Docker container base image for gitlab-ci-multi-runner. Use this image to build your CI runner images.

Contributing

If you find this image useful here's how you can help:

  • Send a pull request with your awesome features and bug fixes
  • Help users resolve their issues.
  • Support the development of this image with a donation

Issues

Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.

SELinux users should try disabling SELinux using the command setenforce 0 to see if it resolves the issue.

If the above recommendations do not help then report your issue along with the following information:

  • Output of the docker version and docker info commands
  • The docker run command or docker-compose.yml used to start the image. Mask out the sensitive bits.
  • Please state if you are using Boot2Docker, VirtualBox, etc.

Getting started

Installation

Automated builds of the image are available on Dockerhub and is the recommended method of installation.

Note: Builds are also available on Quay.io

docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

Alternatively you can build the image yourself.

docker build -t sameersbn/gitlab-ci-multi-runner github.com/sameersbn/docker-gitlab-ci-multi-runner

Quickstart

Before a runner can process your CI jobs, it needs to be authorized to access the the GitLab CI server. The CI_SERVER_URL, RUNNER_TOKEN, RUNNER_DESCRIPTION and RUNNER_EXECUTOR environment variables are used to register the runner on GitLab CI.

You can use any ENV variable supported by the gitlab ci runner.

docker run --name gitlab-ci-multi-runner -d --restart=always \
  --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \
  --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \
  --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=shell' \
  digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

Alternatively, you can use the sample docker-compose.yml file to start the container using Docker Compose

Update the values of CI_SERVER_URL, RUNNER_TOKEN and RUNNER_DESCRIPTION in the above command. If these enviroment variables are not specified, you will be prompted to enter these details interactively on first run.

Available variables

You can customise the runner with the following env variables:

  • CA_CERTIFICATES_PATH: the path to your certificate
  • RUNNER_CONCURRENT: the number of concurrent job the runner can start
  • CI_SERVER_URL: your server URL (suffixed by /ci)
  • RUNNER_TOKEN: the runner token corresponding to your project
  • RUNNER_EXECUTOR: the executor to start
  • RUNNER_DESCRIPTION: the description of the runner, displayed in gitlab ui
  • RUNNER_DOCKER_IMAGE: the default image to run when starting a build
  • RUNNER_DOCKER_MODE: the docker mode to use, socket or dind
  • RUNNER_DOCKER_PRIVATE_REGISTRY_URL: url of private registry the runner should access
  • RUNNER_DOCKER_PRIVATE_REGISTRY_TOKEN: token of private registry the runner should access
  • RUNNER_DOCKER_ADDITIONAL_VOLUME: additionals volumes to share between host and jobs (multiple volumes must be separated by a space)
  • RUNNER_OUTPUT_LIMIT: output limit in KB that a build can produce
  • RUNNER_AUTOUNREGISTER: auto unregister the runner when the container stops
  • RUNNER_ADVERTISE_SESSION_ADDRESS: public url to the gitlab-runner docker server (e.g. my-runner-server.com). Use if and only if you want to set up session server. You'll also need to expose some port to reach container's 8920 port.

Using docker executor

You can use the docker executor by using RUNNER_EXECUTOR=docker. You must provide a docker image to use in RUNNER_DOCKER_IMAGE (e.g. docker:latest)

If RUNNER_DOCKER_MODE is set to socket, the docker socket is shared between the runner and the build container. If it is not, you must use docker in docker service in your .gitlabci.yml definitions.

Start the docker runner in socket mode :

docker run --name gitlab-ci-multi-runner -d --restart=always \
  --volume /var/run/docker.sock:/var/run/docker.sock
  --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \
  --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \
  --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=docker' \
  --env='RUNNER_DOCKER_IMAGE=docker:latest' --env='RUNNER_DOCKER_MODE=socket'
  digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

Start the docker runner in dind mode :

docker run --name gitlab-ci-multi-runner -d --restart=always \
  --volume /var/run/docker.sock:/var/run/docker.sock
  --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \
  --env='CI_SERVER_URL=http://git.example.com/ci' --env='RUNNER_TOKEN=xxxxxxxxx' \
  --env='RUNNER_DESCRIPTION=myrunner' --env='RUNNER_EXECUTOR=docker' \
  --env='RUNNER_DOCKER_IMAGE=docker:latest' --env='RUNNER_DOCKER_MODE=dind'
  digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

If you want to share volumes between your containers and the runner in socket mode, use the RUNNER_DOCKER_ADDITIONAL_VOLUME variable to share /builds:/builds.

You can increase the log maximum size by setting the RUNNER_OUTPUT_LIMIT variable (in kb)

See https://docs.gitlab.com/ce/ci/docker/using_docker_build.html for more info.

Concurrent jobs

You an setup your runner to start multiple job in parallel by setting the environment variable RUNNER_CONCURRENT to the number of jobs you want to run concurrently.

Command-line arguments

You can customize the launch command by specifying arguments to gitlab-ci-multi-runner on the docker run command. For example the following command prints the help menu of gitlab-ci-multi-runner command:

docker run --name gitlab-ci-multi-runner -it --rm \
  --volume /srv/docker/gitlab-runner:/home/gitlab_ci_multi_runner/data \
  digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0 --help

Persistence

For the image to preserve its state across container shutdown and startup you should mount a volume at /home/gitlab_ci_multi_runner/data.

The Quickstart command already mounts a volume for persistence.

SELinux users should update the security context of the host mountpoint so that it plays nicely with Docker:

mkdir -p /srv/docker/gitlab-runner
chcon -Rt svirt_sandbox_file_t /srv/docker/gitlab-runner

Deploy Keys

At first run the image automatically generates SSH deploy keys which are installed at /home/gitlab_ci_multi_runner/data/.ssh of the persistent data store. You can replace these keys with your own if you wish to do so.

You can use these keys to allow the runner to gain access to your private git repositories over the SSH protocol.

NOTE

  • The deploy keys are generated without a passphrase.
  • If your CI jobs clone repositories over SSH, you will need to build the ssh known hosts file which can be done in the build steps using, for example, ssh-keyscan github.com | sort -u - ~/.ssh/known_hosts -o ~/.ssh/known_hosts.

Trusting SSL Server Certificates

If your GitLab server is using self-signed SSL certificates then you should make sure the GitLab server's SSL certificate is trusted on the runner for the git clone operations to work.

The runner is configured to look for trusted SSL certificates at /home/gitlab_ci_multi_runner/data/certs/ca.crt. This path can be changed using the CA_CERTIFICATES_PATH enviroment variable.

Create a file named ca.crt in a certs folder at the root of your persistent data volume. The ca.crt file should contain the root certificates of all the servers you want to trust.

With respect to GitLab, append the contents of the gitlab.crt file to ca.crt. For more information on the gitlab.crt file please refer the README of the docker-gitlab container.

Similarly you should also trust the SSL certificate of the GitLab CI server by appending the contents of the gitlab-ci.crt file to ca.crt.

Maintenance

Upgrading

To upgrade to newer releases:

  1. Download the updated Docker image:
docker pull digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0
  1. Stop the currently running image:
docker stop gitlab-ci-multi-runner
  1. Remove the stopped container
docker rm -v gitlab-ci-multi-runner
  1. Start the updated image
docker run -name gitlab-ci-multi-runner -d \
  [OPTIONS] \
  digitallumberjack/docker-gitlab-ci-multi-runner:v13.4.0

Shell Access

For debugging and maintenance purposes you may want access the containers shell. If you are using Docker version 1.3.0 or higher you can access a running containers shell by starting bash using docker exec:

docker exec -it gitlab-ci-multi-runner bash

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 72.7%
  • Dockerfile 25.1%
  • Makefile 2.2%