Home > Operation and Maintenance > Docker > What is the use of docker image?

What is the use of docker image?

coldplay.xixi
Release: 2020-07-28 10:54:02
Original
6064 people have browsed it

The uses of docker images: 1. The image is the prerequisite for Docker to run the container. The warehouse is the place where the image is stored, and it is the core of Docker; 2. The image can be regarded as a special file system. In addition to providing containers In addition to the programs, libraries, resources, configuration and other files required for runtime, it also contains some configuration parameters prepared for runtime.

What is the use of docker image?

Use of docker image:

Previous Docker command map:

What is the use of docker image?

It can be seen that Docker contains three basic concepts, namely image (Image), container (Container) and warehouse (Repository ). The image is the prerequisite for Docker to run the container. The warehouse is the place where the image is stored. It can be seen that the image is the core of Docker.

Back to the topic, the Docker image can be regarded as a special file system. In addition to providing the programs, libraries, resources, configuration and other files required for the container to run, it also contains some files prepared for the runtime. Some configuration parameters (such as anonymous volumes, environment variables, users, etc.). The image does not contain any dynamic data, and its content will not be changed after it is built.

If you want to have a deeper understanding of Docker mirroring, the principle of mirroring is also essential, and the most important concept is mirroring layers (Layers) (as shown below). The image layer relies on a series of underlying technologies, such as file systems, copy-on-write, union mounts, etc. Fortunately, you can learn these technologies in many places. I won’t go into the technical details here.

What is the use of docker image?

In general, the most important thing to remember is that each instruction in the Dockerfile creates an image layer, which in turn increases the overall image size.

As one of Docker’s most prominent innovations, mirroring has revolutionized software delivery standards. Understanding images is very important to understanding the entire Docker life cycle.

Related tutorial recommendations: docker tutorial

The above is the detailed content of What is the use of docker image?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template