Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 templates

Example:

```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
```