+2 votes
in DevOps by
edited by
What is Docker image?

2 Answers

0 votes
by
edited by

Docker image is the source of Docker container. In other words, Docker images are used to create containers. Images are created with the build command, and they’ll produce a container when started with run. Images are stored in a Docker registry such as registry.hub.docker.com because they can become quite large, images are designed to be composed of layers of other images, allowing a minimal amount of data to be sent when transferring images over the network.

0 votes
by
The Docker image help to create Docker containers. You can create the Docker image with the build command. Due to this, it creates a container that starts when it begins to run. Every docker images are stored in the Docker registry.

Related questions

+1 vote
+1 vote
asked Aug 15, 2020 in DevOps by RShastri
0 votes
+1 vote
asked Dec 27, 2022 in Digital Primer by john ganales
...