inconsole / docker-alpine-jenkins

Jenkins Docker image running on Alpine Linux and Oracle JDK 8

Home Page:https://quay.io/repository/elifarley/alpine-jenkins

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jenkins running under Alpine Linux and Oracle JDK 8

Docker Repository on Quay.io 126.0 MB

docker pull quay.io/elifarley/alpine-jenkins:latest

The Jenkins Continuous Integration and Delivery server.

This is a fully functional Jenkins server, based on the Long Term Support release http://jenkins-ci.org/.

Usage

docker run -p 8080:8080 -p 50000:50000 quay.io/elifarley/alpine-jenkins:latest

Only a few Alpine packages have been installed, like curl, wget, zip and bash.

You can create a derived image and include a few more packages, like this:

FROM quay.io/elifarley/alpine-jenkins:latest
MAINTAINER Your Name <your-name@host.com>

USER root

RUN apk --update add --no-cache mercurial git && \
    rm -rf /var/cache/apk/*
    
USER ${user}

About

Jenkins Docker image running on Alpine Linux and Oracle JDK 8

https://quay.io/repository/elifarley/alpine-jenkins


Languages

Language:Shell 95.0%Language:Groovy 5.0%