Ecosyste.ms: Awesome
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: 10 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T08:27:01.000Z (22 days ago)
- Last Synced: 2024-10-18T00:08:21.292Z (20 days ago)
- Topics: continuous-deployment, continuous-integration, docker-image, jenkins
- Language: Shell
- Homepage:
- Size: 86.9 KB
- Stars: 6
- Watchers: 3
- 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**
```
docker run -d \
--name= \
-v :/config \
-v /etc/localtime:/etc/localtime:ro \
-e JAVA_ARGS= \
-e JAVA_OPTS= \
-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**
```
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 \
-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:-
```
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)