From 78979fa8877ac20e8a7bfbe19ac349fe113e8af2 Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Mon, 24 Feb 2020 17:45:58 +0000 Subject: [PATCH] chore(update): upgrade to 2.204.2 (#31) --- Dockerfile | 2 +- Dockerfile.debug | 2 +- README.md | 8 ++++---- examples/Dockerfile | 2 +- examples/files/jenkins_wrapper.sh | 2 +- files/jenkins_wrapper.sh | 2 +- update.sh | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index e531531..bf8057e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.190.1 +ARG JENKINS_VER=2.204.2 FROM jenkins/jenkins:${JENKINS_VER} diff --git a/Dockerfile.debug b/Dockerfile.debug index e845b88..528bff4 100644 --- a/Dockerfile.debug +++ b/Dockerfile.debug @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.190.1 +ARG JENKINS_VER=2.204.2 ARG RELEASE=1 FROM target/jenkins-docker-master:${JENKINS_VER}-${RELEASE} diff --git a/README.md b/README.md index 82006b8..429a507 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ The following environment variables can be used to set up Jenkins: The `jenkins-docker-master` images come in a couple of flavors, each designed for a specific use case. All of the images extend the official [Jenkins LTS images](https://hub.docker.com/r/jenkins/jenkins) and as such, many of the options prescribed there apply to this image as well. -### `jenkins-docker-master:2.190.1-1` +### `jenkins-docker-master:2.204.2-1` -This is the de facto image. It is based off of `jenkins/jenkins:2.190.1` and includes a few modifications. It was created with the intention to be extended by using groovy scripts to setup ACLs using various plugins and as such, we have provided example groovy scripts [here](https://github.com/target/jenkins-docker-master/blob/master/examples). +This is the de facto image. It is based off of `jenkins/jenkins:2.204.2` and includes a few modifications. It was created with the intention to be extended by using groovy scripts to setup ACLs using various plugins and as such, we have provided example groovy scripts [here](https://github.com/target/jenkins-docker-master/blob/master/examples). -### `jenkins-docker-master:debug-2.190.1-1` +### `jenkins-docker-master:debug-2.204.2-1` -This image is based off of the `jenkins-docker-master:2.190.1-1` image. The noticeable difference is in relation to increasing log verbosity for troubleshooting. +This image is based off of the `jenkins-docker-master:2.204.2-1` image. The noticeable difference is in relation to increasing log verbosity for troubleshooting. diff --git a/examples/Dockerfile b/examples/Dockerfile index 686d10f..98c6fc4 100644 --- a/examples/Dockerfile +++ b/examples/Dockerfile @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.190.1 +ARG JENKINS_VER=2.204.2 ARG RELEASE=1 FROM target/jenkins-docker-master:${JENKINS_VER}-${RELEASE} diff --git a/examples/files/jenkins_wrapper.sh b/examples/files/jenkins_wrapper.sh index 555f4e1..f5e9221 100755 --- a/examples/files/jenkins_wrapper.sh +++ b/examples/files/jenkins_wrapper.sh @@ -1,6 +1,6 @@ #!/bin/bash -JENKINS_VER=2.190.1 +JENKINS_VER=2.204.2 RELEASE=1 # This enables you to directly tie versions of plugins to a specific version of Jenkins diff --git a/files/jenkins_wrapper.sh b/files/jenkins_wrapper.sh index 986489b..f52b5a1 100755 --- a/files/jenkins_wrapper.sh +++ b/files/jenkins_wrapper.sh @@ -1,6 +1,6 @@ #!/bin/bash -JENKINS_VER=2.190.1 +JENKINS_VER=2.204.2 RELEASE=1 # This enables you to directly tie versions of plugins to a specific version of Jenkins diff --git a/update.sh b/update.sh index 2b95263..5a9fb5f 100755 --- a/update.sh +++ b/update.sh @@ -1,7 +1,7 @@ #!/bin/bash # This is a simple script to update the version of jenkins being used -JENKINS_VER=2.190.1 +JENKINS_VER=2.204.2 RELEASE=1 ### DO NOT MODIFY ANY LINES BELOW ###