Step by Step Guide to install Jenkins in Docker locally
1. Install Docker Desktop
https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe
2. We going to install Jenkins on Docker
Open command line ( powershell)
docker pull jenkins/jenkins
docker volume create jenkins_data
docker run -d --name jenkins -p 8080:8080 -p 50000:50000 -v jenkins_data:/var/jenkins_home jenkins/jenkins
Once it is running we need to execute to get installation password :
docker exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword
Open Jenkins locally and continue with installation