Docker images for my Jenkins Tutorial (see full description)
578
This Docker image is being used in my Jenkins Tutoriual on https://oliverveits.wordpress.com/2016/12/02/getting-started-with-jenkins-part-1-installation-in-the-docker-way/
It helps that you get a head start on any part you want to begin with: Part 1: Installation and Configuration of Jenkins, loading Plugins Part 2 : Creating our first Jenkins job: GitHub download and Software build Part 3: Periodic and automatically triggered Builds Part 4 (planned): running automated tests
Part 1 is started with the official jenkins image:
sudo docker run -it --rm --name jenkins -p8080:8080 -p50000:50000 -v$(PWD):/var/jenkins_home jenkins
Part 2 is started with my jenkins_tutorial image, if you want to start with part 2 without following the steps in part 1:
sudo docker run -it --name jenkins -p8080:8080 -p50000:50000 oveits/jenkins_tutorial:part2_step1
Part 3 and part 4 are upcoming.
Note that all parts can be started with the official jenkins image with the same command as in part 1, if you follow all steps. The image jenkins_tutorial is needed only, if you want to start e.g. part 2 without being forced to follow all steps in part 1.
Content type
Image
Digest
Size
574.9 MB
Last updated
over 9 years ago
docker pull oveits/jenkins_tutorial:part3_step1