Sign inSign up

chubr/docker-jenkins

By chubr

Updated almost 4 years ago

Image
0

251

chubr/docker-jenkins repository overview

Jenkins Docker image for Raspberry Pi

Docker Image Version (latest by date)

A basic Jenkins image that's compatible with Raspberry Pi. Automated builds are pushed whenever a new version of Jenkins becomes available.

What is Jenkins?

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.

logo

Usage

docker-cli
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.


docker-compose
    version: '3.7'
    services:
      jenkins:
        image: chubr/docker-jenkins:latest
        ports:
          - 8081:8080
          - 50000:50000
        container_name: jenkins

Supported Architectures

ArchitectureAvailable
amd64

arm64

arm/v7


This image is available on GitHub & DockerHub.

Tag summary

Content type

Image

Digest

sha256:cf8364988

Size

406.9 MB

Last updated

almost 4 years ago

docker pull chubr/docker-jenkins