This is a base image for Docker, which includes JDK and the Jenkins agent executable (agent.jar). This executable is an instance of the Jenkins Remoting library. JDK version depends on the image and the platform, see the Configurations section below.
❗ Warning! This image used to be published as jenkinsci/slave and jenkins/slave. These images are now deprecated, use jenkins/agent.
See GitHub releases for versions 3.35-1
and above.
There is no changelog for previous versions, see the commit history.
Jenkins remoting changelogs are available here.
This image is used as the basis for the Docker Inbound Agent image. In that image, the container is launched externally and attaches to Jenkins.
This image may instead be used to launch an agent using the Launch method of Launch agent via execution of command on the master. For example on Linux you can try
docker run -i --rm --name agent --init jenkins/agent java -jar /usr/share/jenkins/agent.jar
after setting Remote root directory to /home/jenkins/agent
.
or if using Windows Containers
docker run -i --rm --name agent --init jenkins/agent:jdk8-windowsservercore-1809 java -jar C:/ProgramData/Jenkins/agent.jar
after setting Remote root directory to C:\Users\jenkins\Agent
.
Starting from Remoting 3.8 there is a support of Work directories, which provides logging by default and change the JAR Caching behavior.
Call example for Linux:
docker run -i --rm --name agent1 --init -v agent1-workdir:/home/jenkins/agent jenkins/agent java -jar /usr/share/jenkins/agent.jar -workDir /home/jenkins/agent
Call example for Windows Containers:
docker run -i --rm --name agent1 --init -v agent1-workdir:C:/Users/jenkins/Work jenkins/agent java -jar C:/ProgramData/Jenkins/agent.jar -workDir C:/Users/jenkins/Work
The image has several supported configurations, which can be accessed via the following tags:
latest
: Latest version with the newest remoting (based onopenjdk:8-jdk-buster
)latest-stretch
: Latest version with the newest remoting (based onopenjdk:8-jdk-stretch
)latest-jdk11
: Latest version with the newest remoting and Java 11 (based onopenjdk:11-jdk-buster
)alpine
: Small image based on Alpine Linux (based onadoptopenjdk/openjdk8:jdk8u${version}-alpine
)jdk8-windowsservercore-1809
: Latest version with the newest remoting (based onadoptopenjdk:8-jdk-hotspot-windowsservercore-1809
)jdk11-windowsservercore-1809
: Latest version with the newest remoting and Java 11 (based onadoptopenjdk:11-jdk-hotspot-windowsservercore-1809
)jdk8-nanoserver-1809
: Latest version with the newest remoting with Windows Nano Serverjdk11-nanoserver-1809
: Latest version with the newest remoting with Windows Nano Server and Java 11
There are also versioned tags in DockerHub, and they are recommended for production use. See the full list here
Java 11 support is available for Debian-based images and Windows images. Alpine image for Java 11 will not be provided, see JENKINS-54487. There is a probability that images for Java 11 will be changed to AdoptOpenJDK base images in the future.