Common Docker Images Questions. Follow up quiz part of the Introduction to Docker blog post series.


Question 1

Correct Answers: 1/3

How to list all the docker images pulled on the system with image details such as TAG/IMAGE ID/SIZE etc.


Question 2

Correct Answers: 1/3

How to pull the Apache HTTP server image.


Question 3

Correct Answers: 1/3

How to run the docker image mentioned in the command. Which will create a docker container in which the Apache HTTP server will run.


Question 4

Correct Answers: 1/3

How to remove the docker image with the docker image id mentioned in the command


Question 5

Correct Answers: 1/4

Which command will you use to pull a Docker image?


Question 6

Correct Answers: 1/3

What are Docker Images?


Question 7

Correct Answers: 1/3

If you wish to use a base image and make modifications or personalize it, how do you do that?


Question 8

Correct Answers: 1/3

How do you create a new Docker image and store it on the local system?


Question 9

Correct Answers: 1/3

How to delete an image from the local storage system?


Question 10

Correct Answers: 1/4

Following Docker command: docker commit -m "My first update" container_ID user_name/repository_name is used to:


Finish Quiz