Docker Interview Questions — Part 2

Common Questions You should know before the Interview

Bhargav Bachina
Bachina Labs

--

Photo by Carl Heyerdahl on Unsplash

I have done many interviews so far both as an interviewer and Interviewee. I am compiling this list based on my experience and we can’t put it all in one article so I am dividing these articles into 15 questions each. We will see how many parts this will come into. Here are the second 15 Common Questions in Docker.

Here is the first part of this article

Docker Interview Questions — Part 1

16. Explain the container architecture?

Let’s look at the following diagram, we have three sections 1) Docker Engine provides rest API for the docker client and also has other functionality such as image builds and management, security, core networking, etc. 2) container runtime has two modules containerd and runc which are responsible for the container execution 3) Linux Operating System

Container Architecture

17. Explain the Docker Engine?

When Docker was first released, it has one monolithic binary which includes Docker client, Docker API, container runtime, an image builds, etc. But, it was later modularized…

--

--