Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhijunzhou/custom-jenkins
custom docker official jenkins images and disable setup wizard
https://github.com/zhijunzhou/custom-jenkins
disable-wizard dockerfile jenkins
Last synced: about 1 month ago
JSON representation
custom docker official jenkins images and disable setup wizard
- Host: GitHub
- URL: https://github.com/zhijunzhou/custom-jenkins
- Owner: zhijunzhou
- Created: 2017-07-31T07:18:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-02T08:08:53.000Z (over 7 years ago)
- Last Synced: 2023-08-24T16:11:32.180Z (over 1 year ago)
- Topics: disable-wizard, dockerfile, jenkins
- Language: Groovy
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom docker offical jenkins images
If you are ready to use docker official [jenkins](https://github.com/jenkinsci/docker) images, but you can not automatically create an administrator account, and preinstall some plugins you like. The repo will help you to achieve your goal.
After run this image, you will get a customized official jenkins application mounted on the docker container. Meanwhile, you will get an initialized administator account(admin/admin), and some preinstall [plugins](./plugins.txt).
## Usage
```shell
$ docker run -d --name jenkins -p 8080:8080 -p 50000:50000 zhijunzhou/jenkins
```## Default Administrator Account
username: admin
password: admin## View jenkins logs
```shell
$ docker logs jenkins
```## Stop jenkins instance
```shell
$ docker stop jenkins
$ docker rm jenkins
// remove unused containers and images
$ docker system prune
// remove images
$ docker rmi cjenkins
```## Reference from
https://github.com/geerlingguy/ansible-role-jenkins/issues/50
## docker hub
https://hub.docker.com/r/zhijunzhou/jenkins/