A basic Jenkins image that's compatible with Raspberry Pi. Automated builds are pushed whenever a new version of Jenkins becomes available.
Jenkins is an open source automation server written in Java. The project was forked from Hudson after a dispute with Oracle. Jenkins helps to automate the non-human part of the whole software development process, with now common things like continuous integration, but by further empowering teams to implement the technical part of a Continuous Delivery.

docker run -p 8080:8080 -p 50000:50000 chubr/docker-jenkins:latest
This will store the workspace in /var/jenkins_home. All Jenkins data lives in there - including plugins and configuration. You will probably want to make that an explicit volume so you can manage it and attach to another container for upgrades :
docker run -p 8080:8080 -p 50000:50000 -v jenkins:/var/jenkins_home chubr/docker-jenkins:latest
this will automatically create a 'jenkins' volume on docker host, that will survive container stop/restart/deletion.
version: '3.7'
services:
jenkins:
image: chubr/docker-jenkins:latest
ports:
- 8081:8080
- 50000:50000
container_name: jenkins
| Architecture | Available |
|---|---|
| amd64 | ✅ |
| arm64 | ✅ |
| arm/v7 | ✅ |
This image is available on GitHub & DockerHub.
Content type
Image
Digest
sha256:cf8364988…
Size
406.9 MB
Last updated
almost 4 years ago
docker pull chubr/docker-jenkins