Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/recuencojones/jenkins-docker-setup
Jenkins docker setup for local development
https://github.com/recuencojones/jenkins-docker-setup
docker jenkins jenkins-docker
Last synced: 6 days ago
JSON representation
Jenkins docker setup for local development
- Host: GitHub
- URL: https://github.com/recuencojones/jenkins-docker-setup
- Owner: RecuencoJones
- Created: 2017-08-29T07:39:18.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2017-08-30T10:30:31.000Z (over 7 years ago)
- Last Synced: 2024-11-07T11:53:21.392Z (about 2 months ago)
- Topics: docker, jenkins, jenkins-docker
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://api.travis-ci.org/RecuencoJones/Jenkins-Docker-Setup.svg?branch=develop)](https://travis-ci.org/RecuencoJones/Jenkins-Docker-Setup)
# Jenkins Docker Setup
Take a look at [Jenkins Docker](https://hub.docker.com/_/jenkins/) for the basic usage of this container.
## Plugins included
Check [pluginx.txt](./pluginx.txt) to see packaged plugins.
## Exposed ports
By default, as it extends `jenkins` image, it exposes:
- 8080: Jenkins web application.
- 50000: Slaves connection port.## Building an image
You can rebuild this image by using the following command:
```
docker build -t .
```## Use existing image from Dockerhub
The image is published as `recuencojones/jenkins-docker-setup`.
You can use it with the following commands:
```
docker pull recuencojones/jenkins-docker-setup
docker run -d --name -p 8080:8080 -p 50000:50000 recuencojones/jenkins-docker-setup
```## Links
- [Jenkins](https://jenkins.io/)
- [Jenkins Docker](https://hub.docker.com/_/jenkins/)
- [RecuencoJones/Jenkins-Docker-Setup in DockerHub](https://hub.docker.com/r/recuencojones/jenkins-docker-setup/)