Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ozerovandrei/jjb
Docker image for the Jenkins Job Builder
https://github.com/ozerovandrei/jjb
Last synced: 16 days ago
JSON representation
Docker image for the Jenkins Job Builder
- Host: GitHub
- URL: https://github.com/ozerovandrei/jjb
- Owner: ozerovandrei
- Created: 2017-08-27T18:50:53.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2021-01-17T08:38:49.000Z (about 4 years ago)
- Last Synced: 2024-11-11T14:51:13.338Z (3 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jenkins Job Builder
This repository contains Dockerfile to build an image with the Jenkins Job Builder.
## Download
```bash
docker pull ozerov/jjb
```## Usage
You need to pass several parameters to a container:
- a configuration file for the Jenkins Job Builder in ini format
- workers count for the Jenkins Job Builder
- a directory containing job templatesExample:
```bash
docker run --rm \
-v $PWD/jenkins.ini:/root/jenkins.ini \
-v $PWD/jobs:/root/jobs \
-e JENKINS_INI='/root/jenkins.ini' \
-e WORKERS='8' \
-e JOBS_DIR='/root/jobs' \
ozerov/jjb
```