How to setup Jenkins with Docker
Here is an easy way to setup Jenkins with Docker
- Run the following commands in your terminal
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
The above command will generate a password. Copy said password
Open
localhost:8080
and paste in the passwordSetup your user account and install suggested plugins.
That’s it!