Free Docker Fundamentals Practice Quiz

12 practical Docker Fundamentals questions with an explanation after every answer. No timer, no signup — about 8 minutes.

About the Docker Fundamentals skill quiz

This Docker Fundamentals quiz is a Practical fundamentals check. It covers images, containers, Dockerfiles, COPY, RUN, CMD, ports, volumes, Compose, build context, logs, exec, and registries. The quiz has 12 questions, takes about 8 minutes, and a score around 8 out of 12 means you have a workable baseline.

The 12 questions on this page are built for practical container workflow screening. They focus on practical decisions you would make while building, debugging, querying, or operating real projects.

Related Docker Fundamentals Practice Questions

Sample Docker Fundamentals questions

Three examples from the 12-question quiz. Answers stay hidden until you reveal them.

Sample Question 1Operations

Which command shows logs from a container named api?

Adocker logs api
Bdocker history api
Cdocker image logs api
Ddocker inspect --delete api
Show answer
Answer: A — docker logs api

docker logs reads stdout/stderr captured from a container. docker inspect shows metadata, not the log stream.

Sample Question 2Operations

Which command opens a shell inside a running container named web when bash is available?

Adocker exec -it web bash
Bdocker build -it web bash
Cdocker pull web bash
Ddocker shell web --new
Show answer
Answer: A — docker exec -it web bash

docker exec runs a command inside an existing running container. -it allocates an interactive terminal.

Sample Question 3Images

What is Docker Hub an example of?

AA container image registry
BA Linux package manager only
CA container runtime kernel
DA database engine
Show answer
Answer: A — A container image registry

Docker Hub is a registry for pushing and pulling container images. Private registries such as ECR, GHCR, and GCR serve the same broad role.

Try another tech quiz

Compare your fundamentals across Git, AWS, Linux, SQL, Python, and Docker.

See all free quizzes