Skip to content

Commit d55081f

Browse files
authored
chore: update repository name (#1130)
This change updates reference to this repository URL following up its renaming from https://github.com/jenkinsci/docker-agent to https://github.com/jenkinsci/docker-agents.
1 parent aae4113 commit d55081f

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Jenkins Agent and Inbound Agent Docker images
22

33
[![Join the chat at https://gitter.im/jenkinsci/docker](https://badges.gitter.im/jenkinsci/docker.svg)](https://gitter.im/jenkinsci/docker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![GitHub stars](https://img.shields.io/github/stars/jenkinsci/docker-agent?label=GitHub%20stars)](https://github.com/jenkinsci/docker-agent)
5-
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agent/releases/latest)
4+
[![GitHub stars](https://img.shields.io/github/stars/jenkinsci/docker-agent?label=GitHub%20stars)](https://github.com/jenkinsci/docker-agents)
5+
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agents/releases/latest)
66

77
This repository contains the definition of Jenkins agent and inbound agent Docker images.
88

README_agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[![Join the chat at https://gitter.im/jenkinsci/docker](https://badges.gitter.im/jenkinsci/docker.svg)](https://gitter.im/jenkinsci/docker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44
[![Docker Pulls](https://img.shields.io/docker/pulls/jenkins/agent.svg)](https://hub.docker.com/r/jenkins/agent/)
5-
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agent/releases/latest)
5+
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agents/releases/latest)
66

77
This is a base image for Docker, which includes Java and the Jenkins agent executable (agent.jar).
88
This executable is an instance of the [Jenkins Remoting library](https://github.com/jenkinsci/remoting).
99
Java version depends on the image and the platform, see the _Configurations_ section below.
1010

1111
## Usage
1212

13-
This image is used as the basis for the [Docker Inbound Agent](https://github.com/jenkinsci/docker-agent/tree/master/README_inbound-agent.md) image.
13+
This image is used as the basis for the [Docker Inbound Agent](https://github.com/jenkinsci/docker-agents/tree/master/README_inbound-agent.md) image.
1414
In that image, the container is launched externally and attaches to Jenkins.
1515

1616
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
@@ -99,7 +99,7 @@ The image has several supported configurations, which can be accessed via the fo
9999
* `jenkins/agent:jdk21-windowsservercore-ltsc2019`
100100
* `jenkins/agent:jdk21-windowsservercore-ltsc2022`
101101

102-
The file [docker-bake.hcl](https://github.com/jenkinsci/docker-agent/blob/master/docker-bake.hcl) defines all the configuration for Linux images and their associated tags.
102+
The file [docker-bake.hcl](https://github.com/jenkinsci/docker-agents/blob/master/docker-bake.hcl) defines all the configuration for Linux images and their associated tags.
103103

104104
There are also versioned tags in DockerHub, and they are recommended for production use.
105105
See the full list at [https://hub.docker.com/r/jenkins/agent/tags](https://hub.docker.com/r/jenkins/agent/tags)
@@ -139,7 +139,7 @@ RUN ln -snf /usr/share/zoneinfo/"${TZ}" /etc/localtime && echo "${TZ}" > /etc/ti
139139

140140
## Changelog
141141

142-
See [GitHub releases](https://github.com/jenkinsci/docker-agent/releases) for versions `3.35-1` and above.
142+
See [GitHub releases](https://github.com/jenkinsci/docker-agents/releases) for versions `3.35-1` and above.
143143
There is no changelog for previous versions, see the commit history.
144144

145145
Jenkins remoting changelogs are available at [https://github.com/jenkinsci/remoting/releases](https://github.com/jenkinsci/remoting/releases).

README_inbound-agent.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Docker image for inbound Jenkins agents
22

33
[![Join the chat at https://gitter.im/jenkinsci/docker](https://badges.gitter.im/jenkinsci/docker.svg)](https://gitter.im/jenkinsci/docker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![GitHub stars](https://img.shields.io/github/stars/jenkinsci/docker-agent?label=GitHub%20stars)](https://github.com/jenkinsci/docker-agent)
4+
[![GitHub stars](https://img.shields.io/github/stars/jenkinsci/docker-agent?label=GitHub%20stars)](https://github.com/jenkinsci/docker-agents)
55
[![Docker Pulls](https://img.shields.io/docker/pulls/jenkins/inbound-agent.svg)](https://hub.docker.com/r/jenkins/inbound-agent/)
6-
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agent/releases/latest)
6+
[![GitHub release](https://img.shields.io/github/release/jenkinsci/docker-agent.svg?label=changelog)](https://github.com/jenkinsci/docker-agents/releases/latest)
77

88
:exclamation: **Warning!** This image used to be published as [jenkinsci/jnlp-slave](https://hub.docker.com/r/jenkinsci/jnlp-slave/) and [jenkins/jnlp-slave](https://hub.docker.com/r/jenkins/jnlp-slave/).
99
These images are deprecated, use [jenkins/inbound-agent](https://hub.docker.com/r/jenkins/inbound-agent/).
1010

1111
This is an image for [Jenkins](https://jenkins.io) agents using TCP or WebSockets to establish inbound connection to the Jenkins controller.
12-
This agent is powered by the [Jenkins Remoting library](https://github.com/jenkinsci/remoting), which version is being taken from the base [Docker Agent](https://github.com/jenkinsci/docker-agent/README_agent.md) image.
12+
This agent is powered by the [Jenkins Remoting library](https://github.com/jenkinsci/remoting), which version is being taken from the base [Docker Agent](https://github.com/jenkinsci/docker-agents/README_agent.md) image.
1313

1414
See [Using Agents](https://www.jenkins.io/doc/book/using/using-agents/) for more info.
1515

alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ LABEL \
115115
org.opencontainers.image.description="This is a base image, which provides the Jenkins agent executable (agent.jar)" \
116116
org.opencontainers.image.version="${VERSION}" \
117117
org.opencontainers.image.url="https://www.jenkins.io/" \
118-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
118+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
119119
org.opencontainers.image.licenses="MIT"
120120

121121
## Inbound Agent image target
@@ -135,7 +135,7 @@ LABEL \
135135
org.opencontainers.image.description="This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller" \
136136
org.opencontainers.image.version="${VERSION}" \
137137
org.opencontainers.image.url="https://www.jenkins.io/" \
138-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
138+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
139139
org.opencontainers.image.licenses="MIT"
140140

141141
ENTRYPOINT ["/usr/local/bin/jenkins-agent"]

debian/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ LABEL \
127127
org.opencontainers.image.description="This is a base image, which provides the Jenkins agent executable (agent.jar)" \
128128
org.opencontainers.image.version="${VERSION}" \
129129
org.opencontainers.image.url="https://www.jenkins.io/" \
130-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
130+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
131131
org.opencontainers.image.licenses="MIT"
132132

133133
## Inbound Agent image target
@@ -147,7 +147,7 @@ LABEL \
147147
org.opencontainers.image.description="This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller" \
148148
org.opencontainers.image.version="${VERSION}" \
149149
org.opencontainers.image.url="https://www.jenkins.io/" \
150-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
150+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
151151
org.opencontainers.image.licenses="MIT"
152152

153153
ENTRYPOINT ["/usr/local/bin/jenkins-agent"]

rhel/ubi9/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ LABEL \
9191
org.opencontainers.image.description="This is a base image, which provides the Jenkins agent executable (agent.jar)" \
9292
org.opencontainers.image.version="${VERSION}" \
9393
org.opencontainers.image.url="https://www.jenkins.io/" \
94-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
94+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
9595
org.opencontainers.image.licenses="MIT"
9696

9797
## Inbound Agent image target
@@ -111,7 +111,7 @@ LABEL \
111111
org.opencontainers.image.description="This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller" \
112112
org.opencontainers.image.version="${VERSION}" \
113113
org.opencontainers.image.url="https://www.jenkins.io/" \
114-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" \
114+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" \
115115
org.opencontainers.image.licenses="MIT"
116116

117117
ENTRYPOINT ["/usr/local/bin/jenkins-agent"]

windows/nanoserver/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ LABEL `
125125
org.opencontainers.image.description="This is a base image, which provides the Jenkins agent executable (agent.jar)" `
126126
org.opencontainers.image.version="${VERSION}" `
127127
org.opencontainers.image.url="https://www.jenkins.io/" `
128-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" `
128+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" `
129129
org.opencontainers.image.licenses="MIT"
130130

131131
## Inbound Agent image target
@@ -139,7 +139,7 @@ LABEL `
139139
org.opencontainers.image.description="This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller" `
140140
org.opencontainers.image.version="${VERSION}" `
141141
org.opencontainers.image.url="https://www.jenkins.io/" `
142-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" `
142+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" `
143143
org.opencontainers.image.licenses="MIT"
144144

145145
ENTRYPOINT ["pwsh.exe", "-f", "C:/ProgramData/Jenkins/jenkins-agent.ps1"]

windows/windowsservercore/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ LABEL `
118118
org.opencontainers.image.description="This is a base image, which provides the Jenkins agent executable (agent.jar)" `
119119
org.opencontainers.image.version="${VERSION}" `
120120
org.opencontainers.image.url="https://www.jenkins.io/" `
121-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" `
121+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" `
122122
org.opencontainers.image.licenses="MIT"
123123

124124
## Inbound Agent image target
@@ -132,7 +132,7 @@ LABEL `
132132
org.opencontainers.image.description="This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller" `
133133
org.opencontainers.image.version="${VERSION}" `
134134
org.opencontainers.image.url="https://www.jenkins.io/" `
135-
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agent" `
135+
org.opencontainers.image.source="https://github.com/jenkinsci/docker-agents" `
136136
org.opencontainers.image.licenses="MIT"
137137

138138
ENTRYPOINT ["powershell.exe", "-f", "C:/ProgramData/Jenkins/jenkins-agent.ps1"]

0 commit comments

Comments
 (0)