As shown in the following figure: When we use virtual machines and Docker, a question arises: Why is Docker faster than VM? The picture above objectively illustrates this problem. 1. Docker has fewer abstraction layers than virtual machines. 2. Docker uses the kernel of the host machine, while VM requires the Guest OS. Therefore, when creating a new container, Docker does not need to reload an operating system like a virtual machine. The virtual machine loads the Guest OS (taking time in minutes), while Docker uses the host machine's operating system, omitting this complex process (taking time in seconds). After clarifying these, let's take a look at how we use it on the client side. First, we need to understand a few terms: Host (Docker Engine)A physical or virtual machine used to execute the Docker daemon and containers. Image What is a Docker image? Simply put, a Docker image is a Linux file system (Root FileSystem), which contains programs that can run on the Linux kernel and the corresponding data.
ContainerThe relationship between an image and a container is like that between a class and an instance in object-oriented programming. An image is a static definition, and a container is an entity at the runtime of the image. Containers can be created, started, stopped, deleted, paused, etc. Image layeringDocker supports creating new images by extending existing images. In fact, 99% of the images in Docker Hub are built by installing and configuring the required software in the base image. As can be seen from the above figure, the new image is generated by stacking the base image layer by layer. Every time you install a piece of software, you add a layer to the existing image. Writable container layerWhen the container starts, a new writable layer is loaded on top of the image. This layer is usually called the "container layer", and everything below the "container layer" is called the "image layer". All changes to the container - whether adding, deleting, or modifying files - only happen at the container level. Only the container layer is writable, and all image layers below the container layer are read-only. There may be a large number of image layers, and all image layers will be combined together to form a unified file system. If there is a file with the same path in different layers, such as /a, the /a in the upper layer will overwrite the /a in the lower layer, which means that the user can only access the file /a in the upper layer. In the container layer, what the user sees is a superimposed file system. Data is copied only when it needs to be modified. This feature is called Copy-on-Write. It can be seen that the container layer saves the changed part of the image and does not make any modifications to the image itself. To sum up: the container layer records the changes to the image, all image layers are read-only and will not be modified by the container, so the image can be shared by multiple containers. VolumeIn fact, our container is like a simplified version of an operating system, except that the system only installs the environment required for our program to run. As mentioned earlier, our container can be deleted. If it is deleted, what should we do with the data that needs to be persisted generated by the program in the container? When the container is running, we can enter the container to view it. Once the container is deleted, there will be nothing left. So the data volume is used to solve this problem. It is used to persist data on our host machine and realize data sharing between containers. Simply put, it maps the host machine's directory to the directory in the container. The application reads and writes data in the directory in the container and the data will be synchronized to the host machine. In this way, the data generated by the container can be persisted. For example, our database container can store data in the real disk on our host machine. RegistryDocker uses Registry to store user-built images. There are two types of registries: public and private. Docker Inc. operates a public registry called Docker Hub. Users can register an account on Docker Hub to share and save their own images. Docker provides a public image repository hub.docker.com (Docker calls it Repository) that provides a huge collection of images for use. A Docker Registry can contain multiple repositories; each repository can contain multiple tags; each tag corresponds to an image. Typically, a repository contains images of different versions of the same software, and tags correspond to different versions of the software. We can use the format of <warehouse name>:<label> to specify which version of the software is the mirror. If no tag is given, the default tag is latest. Summarize The Docker official website has a sentence like this: Build and Ship any Application Anywhere. Combined with what we just understood, the summary is: build once, run everywhere. Through the combination of the above technologies, the final result is: for most applications, developers can create images through docker build, upload images through docker push, users can download images through docker pull, and run container applications with docker run. Users no longer need to worry about how to build the environment, how to install, or how to resolve library conflicts between different distributions - and it usually does not consume more hardware resources or significantly reduce performance. The above is the detailed content of the detailed explanation of Docker's working mode and principle. For more information about Docker's working mode and principle, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Solution to the problem that MySQL commands cannot be entered in Chinese
>>: UrlRewriter caching issues and a series of related explorations
The VMware Workstation Pro version I use is: 1. F...
Table of contents 1. Easy to use 2. Using generic...
View the installation information of mysql: #ps -...
Preface: Use watermark effect in vue project, you...
When checking the service daily, when I went to l...
background Indexes are a double-edged sword. Whil...
1. New and old domain name jump Application scena...
The overall architecture of NGINX is characterize...
First of all, you can understand the difference b...
Table of contents Download tf-gpu Build your own ...
<br />Previous Web Design Tutorial: Web Desi...
I heard that there is an interview question: How ...
This article example shares the specific code of ...
Table of contents Introduction and Demo API: Cont...
Step 1: Change DATABASES in setting.py # Configur...