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
- Host: GitHub
- URL: https://github.com/binhex/arch-jenkins
- Owner: binhex
- License: gpl-3.0
- Created: 2015-05-13T11:57:08.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2026-01-15T10:16:06.000Z (5 months ago)
- Last Synced: 2026-01-15T15:47:23.525Z (5 months ago)
- Topics: continuous-deployment, continuous-integration, docker-image, jenkins
- Language: Shell
- Homepage:
- Size: 97.7 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
[](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)