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?✗ Incorrect
The
docker pull command downloads the specified image from Docker Hub.Which port is used to access Jenkins web interface when running in Docker?
✗ Incorrect
Port 8080 is the default port for Jenkins web interface.
Why should you use Docker volumes with Jenkins containers?
✗ Incorrect
Docker volumes keep data safe even if the container is deleted.
What does the
-p 8080:8080 option do in docker run?✗ Incorrect
It connects the host's port 8080 to the container's port 8080.
Which command starts Jenkins in Docker and maps ports for web and agent access?
✗ Incorrect
This command maps both web interface and agent ports.
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.