简体   繁体   中英

Run Jenkins master and slave with Docker

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 ?

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.

I suggest you take trying to use dynamic|ephemeral docker nodes, instead of manually creating nodes and connecting to them via ssh. Take a look at https://engineering.riotgames.com/news/putting-jenkins-docker-container , it's very powerful and I think it's one of killer usecases for Docker.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM