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

https://github.com/binhex/arch-jenkins

Docker build script for Arch Linux base with Jenkins
https://github.com/binhex/arch-jenkins

continuous-deployment continuous-integration docker-image jenkins

Last synced: 4 months ago
JSON representation

Docker build script for Arch Linux base with Jenkins

Awesome Lists containing this project

README

          

# Application

[Jenkins](https://jenkins-ci.org/)

## Description

Jenkins is an open source continuous integration tool written in Java. The
project was forked from Hudson after a dispute with Oracle. Jenkins provides
continuous integration services for software development. It is a server-based
system running in a servlet container such as Apache Tomcat.

## Build notes

Latest stable release of Jenkins from Arch Linux Repo.

## Usage

```bash
docker run -d \
--name= \
-v :/config \
-v /etc/localtime:/etc/localtime:ro \
-e JAVA_ARGS= \
-e JAVA_OPTS= \
-e HEALTHCHECK_COMMAND= \
-e HEALTHCHECK_ACTION= \
-e HEALTHCHECK_HOSTNAME= \
-e UMASK= \
-e PUID= \
-e PGID= \
binhex/arch-jenkins
```

Please replace all user variables in the above command defined by <> with the
correct values.

## Access application

`http://:8090`

## Example

```bash
docker run -d \
--name=jenkins \
-v /apps/docker/jenkins:/config \
-v /etc/localtime:/etc/localtime:ro \
-e JAVA_ARGS=-Xmx512m \
-e JAVA_OPTS=-Dhudson.footerURL=\
[http://mycompany.com](http://mycompany.com) \
-e UMASK=000 \
-e PUID=0 \
-e PGID=0 \
binhex/arch-jenkins
```

## Notes

User ID (PUID) and Group ID (PGID) can be found by issuing the following command
for the user you want to run the container as:-

```bash
id
```

___
If you appreciate my work, then please consider buying me a beer :D

[![PayPal donation](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4)

[Documentation](https://github.com/binhex/documentation) | [Support forum](http://forums.unraid.net/index.php?topic=45839.0)