Access your shell terminal and make sure docker is installed on your device. You can confirm this by running docker --version.
Pull the Jenkins docker image with the command docker pull jenkins/jenkins:lts-jdk11. You can change the docker tag to pull a different version if you want.
Run the image by using docker run --name jenkins-server -p 8080:8080 jenkins/jenkins:lts-jdk11. You can modify the name given to the container or the port that Jenkins gets mapped to, if you prefer.
You can now follow from step 4 of #17 to finish the server setup process.
How to Run a Jenkins Server from a Docker Image
docker --version
.docker pull jenkins/jenkins:lts-jdk11
. You can change the docker tag to pull a different version if you want.docker run --name jenkins-server -p 8080:8080 jenkins/jenkins:lts-jdk11
. You can modify the name given to the container or the port that Jenkins gets mapped to, if you prefer.