Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jenkins-infra/docker-jenkins-lts

a docker image containing the latest jenkins lts release and plugins
https://github.com/jenkins-infra/docker-jenkins-lts

docker-image jenkins jenkins-lts lts

Last synced: about 2 months ago
JSON representation

a docker image containing the latest jenkins lts release and plugins

Awesome Lists containing this project

README

        

# docker-jenkins-lts

[![](https://img.shields.io/docker/pulls/jenkinsciinfra/ldap?label=jenkinsciinfra%2Fjenkins-lts&logo=docker&logoColor=white)](https://hub.docker.com/r/jenkinsciinfra/jenkins-lts/tags)

A docker image containing the latest jenkins lts release and plugins used by the Jenkins infrastructure.

## Updating Plugins

```
bash ./bin/update-plugins.sh
```

This script uses the [Jenkins Plugin Manager Tool command line](https://github.com/jenkinsci/plugin-installation-manager-tool) under the hood to update the plugins.

## Update Jenkins Version

```
VERSION=$(jv get --version-identifier lts)
SUFFIX=lts-jdk17
FULL_VERSION=jenkins/jenkins:${VERSION}-${SUFFIX}
sed -i 's|FROM .*|FROM '"${FULL_VERSION}"'|' Dockerfile
```