Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenkins-infra/docker-jenkins-weeklyci
a docker image containing the latest jenkins weekly release and plugins
https://github.com/jenkins-infra/docker-jenkins-weeklyci
docker-image jenkins jenkins-weekly weekly
Last synced: 1 day ago
JSON representation
a docker image containing the latest jenkins weekly release and plugins
- Host: GitHub
- URL: https://github.com/jenkins-infra/docker-jenkins-weeklyci
- Owner: jenkins-infra
- Created: 2021-01-29T13:57:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T10:07:23.000Z (9 days ago)
- Last Synced: 2024-10-29T12:12:20.556Z (9 days ago)
- Topics: docker-image, jenkins, jenkins-weekly, weekly
- Language: Shell
- Homepage: https://hub.docker.com/r/jenkinsciinfra/jenkins-weekly
- Size: 1 MB
- Stars: 3
- Watchers: 6
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
Awesome Lists containing this project
README
# docker-jenkins-weeklyci
[![](https://img.shields.io/docker/pulls/jenkinsciinfra/ldap?label=jenkinsciinfra%2Fjenkins-weeklyci&logo=docker&logoColor=white)](https://hub.docker.com/r/jenkinsciinfra/jenkins-weeklyci/tags)
A docker image for the service weekly.ci.jenkins.io.
## Updating Plugins
```shell
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
```shell
VERSION=$(jv get --version-identifier latest)
SUFFIX=jdk17
FULL_VERSION=jenkins/jenkins:${VERSION}-${SUFFIX}
sed -i 's|FROM .*|FROM '"${FULL_VERSION}"'|' Dockerfile
```