如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
![Join the chat at []]([]
A Jenkins agent image which allows using SSH to establish the connection. It can be used together with the SSH Build Agents plugin or other similar plugins.
See Jenkins Distributed builds for more info.
To run a Docker container
bashdocker run -d --rm --name=agent --publish 2200:22 -e "JENKINS_AGENT_SSH_PUBKEY=<public_key>" jenkins/ssh-agent
-d: To start a container in detached mode, use the -d option. Containers started in detached mode exit when the root process used to run the container exits, unless you also specify the --rm option.--rm: If you use -d with --rm, the container is removed when it exits or when the daemon exits, whichever happens first.--name: Assigns a name to the container. If you do not specify a name, Docker generates a random name.--publish 2200:22: Publishes the host port 2200 to the agent container port 22 (SSH) to allow connection from the host with ssh jenkins@localhost -p 2200Please note none of these options are mandatory, they are just examples.
You will then be able to connect this agent using the SSH Build Agents plugin as "jenkins" with the matching private key.
When using the Linux image, you have to set the value of the Remote root directory to /home/jenkins/agent in the agent configuration UI.
!https://raw.githubusercontent.com/jenkinsci/docker-ssh-agent/HEAD/docs/ssh-plugin-remote-root-directory-linux.png "Remote root directory with a Linux agent"
When using the Windows image, you have to set the value of the Remote root directory to C:/Users/jenkins/Work in the agent configuration UI.
!https://raw.githubusercontent.com/jenkinsci/docker-ssh-agent/HEAD/docs/ssh-plugin-remote-root-directory-windows.png "Remote root directory with a Windows agent"
If you intend to use another directory than /home/jenkins/agent under Linux or C:/Users/jenkins/Work under Windows, don't forget to add it as a data volume.
bashdocker run -v docker-volume-for-jenkins-ssh-agent:/home/jenkins/agent:rw jenkins/ssh-agent "<public key>"
To use this image with Docker Plugin, you need to pass the public SSH key using environment variable JENKINS_AGENT_SSH_PUBKEY and not as a startup argument.
In Environment field of the Docker Template (advanced section), just add:
JENKINS_AGENT_SSH_PUBKEY=<YOUR PUBLIC SSH KEY HERE>
Don't put quotes around the public key.
Please note that you have to set the value of the Remote File System Root to /home/jenkins/agent in the Docker Agent Template configuration UI.
!https://raw.githubusercontent.com/jenkinsci/docker-ssh-agent/HEAD/docs/docker-plugin-remote-filesystem-root.png "Remote File System Root directory"
If you intend to use another directory than /home/jenkins/agent, don't forget to add it as a data volume.
!https://raw.githubusercontent.com/jenkinsci/docker-ssh-agent/HEAD/docs/docker-plugin-volumes.png "Docker Volumes mounts"
You should be all set.
Should you need to extend the image, you could use something along those lines:
DockerfileFROM jenkins/ssh-agent:debian-jdk17 as ssh-agent # [...] COPY --chown=jenkins mykey "${JENKINS_AGENT_HOME}"/.ssh/mykey # [...]
The image has several supported configurations, which can be accessed via the following tags:
${IMAGE_VERSION} can be found on the https://github.com/jenkinsci/docker-ssh-agent/releases page.
latest, latest-jdk11, jdk11, latest-bullseye-jdk11, bullseye-jdk11, latest-debian-jdk11, debian-jdk11, ${IMAGE_VERSION}, ${IMAGE_VERSION}-jdk11, (Dockerfile)latest-jdk17, jdk17, latest-bullseye-jdk17, bullseye-jdk17,latest-debian-jdk17, debian-jdk17, ${IMAGE_VERSION}-jdk17, (Dockerfile)nanoserver-1809, nanoserver-ltsc2019, nanoserver-1809-jdk11, nanoserver-ltsc2019-jdk11, ${IMAGE_VERSION}-nanoserver-1809, ${IMAGE_VERSION}-nanoserver-ltsc2019, ${IMAGE_VERSION}-nanoserver-1809-jdk11, ${IMAGE_VERSION}-nanoserver-ltsc2019-jdk11 (Dockerfile)windowsservercore-1809, windowsservercore-ltsc2019, windowsservercore-1809-jdk11, windowsservercore-ltsc2019-jdk11, ${IMAGE_VERSION}-windowsservercore-1809, ${IMAGE_VERSION}-windowsservercore-ltsc2019, ${IMAGE_VERSION}-windowsservercore-1809-jdk11, ${IMAGE_VERSION}-windowsservercore-ltsc2019-jdk11 (Dockerfile)Should you want to build this image on your machine (before submitting a pull request for example), please have a look at the pre-requisites:
19.03). Docker Buildx is included in recent versions of Docker Desktop for Windows, macOS, and Linux. Docker Linux packages also include Docker Buildx when installed using the DEB or RPM packages.Target images
If you want to see the target images that will be built, you can issue the following command:
bashmake list alpine_jdk11 alpine_jdk17 debian_jdk11 debian_jdk17
Building a specific image
If you want to build a specific image, you can issue the following command:
bashmake build-<OS>_<JDK_VERSION>
That would give for JDK 11 on Alpine Linux:
bashmake test-alpine_jdk11
Building all images
Then, you can build all the images by running:
bashmake build
Testing all images
If you want to test the images, you can run:
bashmake test
Testing a specific image
If you want to test a specific image, you can run:
bashmake test-<OS>_<JDK_VERSION>
That would give for JDK 11 on Alpine Linux:
bashmake test-alpine_jdk11
Other make targets
show gives us a detailed view of the images that will be built, with the tags, platforms, and Dockerfiles.
bashmake show { "group": { "default": { "targets": [ "alpine_jdk17", "alpine_jdk11", "debian_jdk11", "debian_jdk17" ] } }, "target": { "alpine_jdk11": { "context": ".", "dockerfile": "alpine/Dockerfile", "tags": [ "docker.io/jenkins/ssh-agent:alpine-jdk11", "docker.io/jenkins/ssh-agent:latest-alpine-jdk11" ], "platforms": [ "linux/amd64" ], "output": [ "type=docker" ] }, [...]
bats is a dependency target. It will update the https://github.com/bats-core/bats-core and run the tests.
bashmake bats make: 'bats' is up to date.
See https://github.com/jenkinsci/docker-ssh-agent/releases/latest. Note that the changelogs and release tags were introduced in Dec 2019, and there are no entries for previous releases. Please consult with the commit history if needed.
以下是 jenkins/ssh-agent 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。



来自真实用户的反馈,见证轩辕镜像的优质服务