From ccd2d8ace2d372fc9635bee7e843d7cd467385dd Mon Sep 17 00:00:00 2001 From: Spencer Nicholls <57418435+nichollsspencer@users.noreply.github.com> Date: Wed, 1 Dec 2021 09:21:52 -0600 Subject: [PATCH] Delete 01_04.md --- 01_04.md | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 01_04.md diff --git a/01_04.md b/01_04.md deleted file mode 100644 index ec11311..0000000 --- a/01_04.md +++ /dev/null @@ -1,25 +0,0 @@ -# Learning Jenkins, 01-04: Install Jenkins as a Container - -# Prerequisites -You will need to have [Docker](https://docs.docker.com/get-docker/) installed on your local system. - -# Installation -In a terminal, run the following commands: - -``` -docker --version - -docker pull jenkins/jenkins:lts - -docker run --detach --publish 8080:8080 --volume jenkins_home:/var/jenkins_home --name jenkins jenkins/jenkins:lts - -docker exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword -``` - -# Using the Initial Admin Password -Run the following command and copy the output: -``` -docker exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword -``` - -Open a browser to [localhost:8080](http://localhost:8080) and enter the initial admin password.