I’m trying to run Jenkins on docker.
After I pull the Jenkins image with this command
docker pull jenkins
I tried to start Jenkins image by following the below command:
docker run -p 8080:8080 -p 50000:50000 -v /your/home:/var/jenkins_home jenkins
But when I login to http://localhost:8080/ I get a login error which happens because I don’t have the generated admin password. How do I solve this?