Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/clarketm/jenkins

Jenkins with Docker support
https://github.com/clarketm/jenkins

docker jenkins

Last synced: 19 days ago
JSON representation

Jenkins with Docker support

Awesome Lists containing this project

README

        

# Jenkins with Docker support

## Install
```bash
$ docker pull clarketm/jenkins
```

## Run
```
$ PORT=1234

$ docker run \
--name "jenkins" \
-p $PORT:8080 \
-p 50000:50000 \
-v "jenkins_home:/var/jenkins_home" \
-v "/var/run/docker.sock:/var/run/docker.sock" \
-d clarketm/jenkins:lts
```