Google News
logo
Docker - Interview Questions
What is a docker image?
A Docker image is a read-only template that has a set of instructions for creating containers that can run on Docker. It is an executable package (a collection of files or layers) that bundles together all the necessities such as application code, dependencies, software packages, and more that are required to set up a completely functional container environment. There are two methods to create a Docker image:
 
* Interactive
* Dockerfile
Advertisement