![Join the chat at []]([]
This is a base image for Docker, which includes Java and the Jenkins agent executable (agent.jar). This executable is an instance of the https://github.com/jenkinsci/remoting. Java version depends on the image and the platform, see the Configurations section below.
This image is used as the basis for the https://github.com/jenkinsci/docker-agents/tree/master/README_inbound-agent.md 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 controller. For example on Linux you can try
shdocker 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
powershelldocker run -i --rm --name agent --init jenkins/agent:jdk17-windowsservercore-ltsc2019 java -jar C:/ProgramData/Jenkins/agent.jar
after setting Remote root directory to C:\Users\jenkins\Agent.
Starting from https://github.com/jenkinsci/remoting/blob/master/CHANGELOG.md#38 there is a support of Work directories, which provides logging by default and change the JAR Caching behavior.
Call example for Linux:
shdocker 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:
powershelldocker run -i --rm --name agent1 --init -v agent1-workdir:C:/Users/jenkins/Work jenkins/agent:jdk17-windowsservercore-ltsc2019 java -jar C:/ProgramData/Jenkins/agent.jar -workDir C:/Users/jenkins/Work
The image has several supported configurations, which can be accessed via the lists of tags that can be consulted at https://github.com/jenkinsci/docker-agents/tree/master/tests/golden/
The file https://github.com/jenkinsci/docker-agents/blob/master/docker-bake.hcl defines all the configuration for Linux images and their associated tags.
There are also versioned tags in DockerHub, and they are recommended for production use. See the full list at https://hub.docker.com/r/jenkins/agent/tags
By default, the image is using the Etc/UTC timezone.
If you want to use the timezone of your machine, you can mount the /etc/localtime file from the host (as per https://github.com/moby/moby/issues/***#issuecomment-89697533) and the /etc/timezone from the host too.
bashdocker run --rm --tty --interactive --entrypoint=date --volume=/etc/localtime:/etc/localtime:ro --volume=/etc/timezone:/etc/timezone:ro jenkins/agent Fri Nov 25 18:27:22 CET 2022
You can also set the TZ environment variable to the desired timezone.
TZ is a standard POSIX environment variable used by many images, see *** for a list of valid values.
The next command is run on a machine using the Europe/Paris timezone a few seconds after the previous one.
bashdocker run --rm --tty --interactive --env TZ=Asia/Shanghai --entrypoint=date jenkins/agent Sat Nov 26 01:27:58 CST 2022
jenkins/agent image as a base imageShould you want to adapt the jenkins/agent image to your local timezone while creating your own image based on it, you could use the following command (inspired by issue #https://github.com/jenkinsci/docker-inbound-agent/issues/291):
dockerfileFROM jenkins/agent as agent [...] ENV TZ=Asia/Shanghai [...] RUN ln -snf /usr/share/zoneinfo/"${TZ}" /etc/localtime && echo "${TZ}" > /etc/timezone \ && dpkg-reconfigure -f noninteractive tzdata \ [...]
See https://github.com/jenkinsci/docker-agents/releases for versions 3.35-1 and above.
There is no changelog for previous versions, see the commit history.
Jenkins remoting changelogs are available at https://github.com/jenkinsci/remoting/releases.
以下是 jenkins/agent 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务