From 8e25d49d083ddb4c98ef5d57a467e9b6df6d5dd5 Mon Sep 17 00:00:00 2001 From: shehzadashiq Date: Sat, 29 Jan 2022 22:21:32 +0000 Subject: [PATCH] Updated run command to point to latest image Updating command to point to latest stable release --- continuous-delivery/chapters/020_install_jenkins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuous-delivery/chapters/020_install_jenkins.md b/continuous-delivery/chapters/020_install_jenkins.md index 79c3676..40990d7 100644 --- a/continuous-delivery/chapters/020_install_jenkins.md +++ b/continuous-delivery/chapters/020_install_jenkins.md @@ -22,7 +22,7 @@ After installing docker, pull our Jenkins docker image from [docker hub](https:/ This is the simplest way of installing Jenkins and requires minimal efforts. ``` -docker run -idt --name jenkins -v jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock -p 8080:8080 -p 50000:50000 jenkins/jenkins:2.178-slim +docker run -idt --name jenkins -v jenkins_home:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock -p 8080:8080 -p 50000:50000 jenkins/jenkins ``` If you install it using the instructions above, find out the IP address and go to http://YOUR_IP_ADDRESS:8080 to access jenkins UI.