0
0
Jenkinsdevops~5 mins

Installing with Docker in Jenkins - Quick Revision & Summary

Choose your learning style9 modes available
Recall & Review
beginner
What is Docker used for when installing Jenkins?
Docker allows you to run Jenkins inside a container, which is like a small, isolated computer. This makes installation easy and consistent on any system.
Click to reveal answer
beginner
Which Docker command pulls the official Jenkins image?
The command is docker pull jenkins/jenkins:lts. It downloads the latest stable Jenkins image from Docker Hub.
Click to reveal answer
beginner
How do you start a Jenkins container with Docker?
Use docker run -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts. This runs Jenkins and maps ports so you can access it in your browser.
Click to reveal answer
intermediate
Why map ports 8080 and 50000 when running Jenkins in Docker?
Port 8080 is for the Jenkins web interface. Port 50000 is for Jenkins agents to connect. Mapping them lets you use Jenkins normally outside the container.
Click to reveal answer
intermediate
How can you save Jenkins data when using Docker?
You use Docker volumes to save Jenkins data outside the container. This keeps your data safe even if the container is removed.
Click to reveal answer
What does the command docker pull jenkins/jenkins:lts do?
ARemoves the Jenkins Docker image
BStarts a Jenkins container
CDownloads the latest stable Jenkins Docker image
DUpdates Docker to the latest version
Which port is used to access Jenkins web interface when running in Docker?
A8080
B80
C50000
D443
Why should you use Docker volumes with Jenkins containers?
ATo speed up Jenkins builds
BTo change Jenkins user interface
CTo increase container memory
DTo save Jenkins data outside the container
What does the -p 8080:8080 option do in docker run?
AMaps host port 8080 to container port 8080
BLimits container CPU usage
CSets container memory to 8080 MB
DRuns container in background
Which command starts Jenkins in Docker and maps ports for web and agent access?
Adocker run -p 8080:8080 jenkins/jenkins:lts
Bdocker run -p 8080:8080 -p 50000:50000 jenkins/jenkins:lts
Cdocker start jenkins
Ddocker build jenkins/jenkins:lts
Explain how to install and run Jenkins using Docker from scratch.
Think about the commands and port mapping needed.
You got /4 concepts.
    Describe why Docker volumes are important when running Jenkins in Docker.
    Consider what happens if the container is deleted.
    You got /3 concepts.