Run Jenkins master and slave with Docker

Ismar Slomic picture Ismar Slomic · Sep 25, 2016 · Viewed 12.4k times · Source

I want to setup Jenkins master on server A and slave on server B with use of Docker.

Both servers are virtual machines dedicated for Jenkins.

Currently I have started Docker container on server A for master, based on the official Jenkins docker image. But what docker image should I use for Jenkins slave?

Answer

Alon picture Alon · Sep 25, 2016

That actually depends on the environment and tools you need in your build environment. For example, if you build a C project, you would need an image containing a C compiler and possibly make if you use Makefiles. If you build a Java project, you would need a JDK with a Java compiler and possibly Ant / Maven / Gradle if you use them as part of your build.

You can use the evarga/jenkins-slave as a good starting point for your build slave.

This image already contains JDK. If you simply need JDK and Maven on your build slave, you can build your Docker image with the following Dockerfile:

FROM evarga/jenkins-slave

run apt-get install maven

Using Docker images for build slaves is actually a good idea. Some of the reasons appear at Templating Jenkins Build Environments with Docker Containers:

Docker has established itself as a popular and convenient way to bootstrap isolated and reproducible environments, which enables Docker containers to be the most maintainable slave environments. Docker containers’ tooling and other configurations can be version controlled in an environment definition called a Dockerfile, and Dockerfiles allows multiple identical containers can be created quickly using this definition or for more customized off-shoots to be created by using that Dockerfile’s image as a base.