From b0847e68ad0832beb7814822d5b8b896ffdb2fd8 Mon Sep 17 00:00:00 2001 From: Matthew Fevold Date: Mon, 22 Mar 2021 10:58:41 -0500 Subject: [PATCH] chore: update to 2.277.1 (#35) Co-authored-by: Neal --- 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 31e1b13..47d87d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.249.1 +ARG JENKINS_VER=2.277.1 FROM jenkins/jenkins:${JENKINS_VER} diff --git a/Dockerfile.debug b/Dockerfile.debug index e60f666..121a26e 100644 --- a/Dockerfile.debug +++ b/Dockerfile.debug @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.249.1 +ARG JENKINS_VER=2.277.1 ARG RELEASE=1 FROM target/jenkins-docker-master:${JENKINS_VER}-${RELEASE} diff --git a/README.md b/README.md index 6d9aed6..abb0e98 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.249.1-1` +### `jenkins-docker-master:2.277.1-1` -This is the de facto image. It is based off of `jenkins/jenkins:2.249.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.277.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). -### `jenkins-docker-master:debug-2.249.1-1` +### `jenkins-docker-master:debug-2.277.1-1` -This image is based off of the `jenkins-docker-master:2.249.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.277.1-1` image. The noticeable difference is in relation to increasing log verbosity for troubleshooting. diff --git a/examples/Dockerfile b/examples/Dockerfile index 597066d..e421732 100644 --- a/examples/Dockerfile +++ b/examples/Dockerfile @@ -1,4 +1,4 @@ -ARG JENKINS_VER=2.249.1 +ARG JENKINS_VER=2.277.1 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 0c10860..12cc623 100755 --- a/examples/files/jenkins_wrapper.sh +++ b/examples/files/jenkins_wrapper.sh @@ -1,6 +1,6 @@ #!/bin/bash -JENKINS_VER=2.249.1 +JENKINS_VER=2.277.1 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 5bc4faa..1ff566e 100755 --- a/files/jenkins_wrapper.sh +++ b/files/jenkins_wrapper.sh @@ -1,6 +1,6 @@ #!/bin/bash -JENKINS_VER=2.249.1 +JENKINS_VER=2.277.1 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 070d6ee..f6fad81 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.249.1 +JENKINS_VER=2.277.1 RELEASE=1 ### DO NOT MODIFY ANY LINES BELOW ###