Prev Next

API / Docker Interview questions

What is the difference between a Docker Image and a Docker Container?

A Docker Image is a read-only template that contains a set of instructions for creating a container. It includes the application code, libraries, dependencies, and environment variables. A Docker Container is a runnable instance of an image. You can start, stop, move, or delete a container using the Docker API or CLI.

More Related questions...

Show more question and Answers...


Comments & Discussions