Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #160 from jenkinsci/rename-windows-images
Browse files Browse the repository at this point in the history
Rename Windows images so that a standard DockerHub repo is used
  • Loading branch information
oleg-nenashev authored Apr 13, 2020
2 parents efc5710 + 2e1f173 commit 07273d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ To run a Docker container with [Work Directory](https://github.com/jenkinsci/rem

Windows agent:

docker run jenkins/jnlp-agent-windows -Url http://jenkins-server:port -WorkDir=C:/Jenkins/agent -Secret <secret> -Name <agent name>
docker run jenkins/inbound-agent:windowsservercore-1809 -Url http://jenkins-server:port -WorkDir=C:/Jenkins/agent -Secret <secret> -Name <agent name>

Optional environment variables:

Expand Down
6 changes: 3 additions & 3 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Param(
[switch] $PushVersions = $false
)

$Repository = 'jnlp-agent'
$Repository = 'inbound-agent'
$Organization = 'jenkins'

if(![String]::IsNullOrWhiteSpace($env:DOCKERHUB_REPO)) {
Expand All @@ -23,11 +23,11 @@ if(![String]::IsNullOrWhiteSpace($env:DOCKERHUB_ORGANISATION)) {
$builds = @{
'jdk8' = @{
'Folder' = '8\windowsservercore-1809';
'Tags' = @( "latest", "windowsservercore-1809", "jdk8", "windowsservercore-1809-jdk8" );
'Tags' = @( "windowsservercore-1809", "windowsservercore-1809-jdk8" );
};
'jdk11' = @{
'Folder' = '11\windowsservercore-1809';
'Tags' = @( "windowsservercore-1809-jdk11", "jdk11" );
'Tags' = @( "windowsservercore-1809-jdk11" );
};
'nanoserver' = @{
'Folder' = '8\nanoserver-1809';
Expand Down

0 comments on commit 07273d1

Please sign in to comment.