In docker, image means "mirror" and is a file system; image can mount several layers of directories together to form a virtual file system with the same directory structure as Linux. Docker passes these files In addition, the host's kernel provides a Linux virtual environment.
The operating environment of this tutorial: linux7.3 system, docker-1.13.1 version, Dell G3 computer.
What does image mean in docker
image Inside is a layer-by-layer file system called Union FS (Union File System).
United file system can mount several layers of directories together to form a virtual file system. The directory structure of the virtual file system is just like the directory structure of ordinary Linux. Docker provides a Linux virtual environment through these files and the kernel of the host.
Each layer of file system is called a layer. The joint file system can set three permissions for each layer of file system, read-only (readonly), read-write (readwrite) and write-out (whiteout-able). ), but each layer of the file system in the docker image is read-only.
When building an image, starting from the most basic operating system, each build operation is equivalent to making a layer of modifications and adding a layer of file system. Layer by layer, modifications to the upper layer will cover the visibility of the lower layer. This is easy to understand, just like the upper layer covers the bottom layer.
When you use it, you will only see a complete whole. You don't know how many layers there are, and you don't know what the modifications made to each layer are. The structure is similar to this:
#From a basic point of view, a typical Linux file system consists of bootfs and rootfs. bootfs (boot file system) mainly includes bootloader and kernel , bootloader is mainly used to boot and load the kernel. When the kernel is loaded into the memory, bootfs will be umounted.
rootfs (root file system) contains standard directories and files such as /dev, /proc, /bin, /etc, etc. in a typical Linux system. The following figure shows the most basic two-layer structure in the docker image. Different Linux distributions (such as ubuntu and CentOS) will have differences in the rootfs layer, reflecting the differences in distribution versions.
When traditional Linux loads bootfs, it will first set rootfs to read-only, and then change rootfs from read-only to read-write after system self-test, and then We can then perform read and write operations on rootfs.
But Docker will not change the read-only of rootfs to read-write after the bootfs self-test is completed. Instead, it will use union mount (a mounting mechanism of UnionFS) to change other layers in the image. Loaded onto the previous read-only rootfs layer, each layer is a rootfs structure and is read-only. Therefore, we cannot modify the layer in an existing image!
Only when we create a container, that is, instantiate the Docker image, the system will allocate an empty read-write rootfs to save the modifications we make. The changes saved by a layer are incremental, just like git.
#To sum up, image is actually a file system, which together with the host's kernel provides a virtual Linux environment for the program. When starting a docker container, docker will build a virtual Linux environment for the container based on the image.
Recommended learning: "docker video tutorial"
The above is the detailed content of What does image mean in docker. For more information, please follow other related articles on the PHP Chinese website!

Docker is an open source platform for developing, packaging and running applications, and through containerization technology, solving the consistency of applications in different environments. 1. Build the image: Define the application environment and dependencies through the Dockerfile and build it using the dockerbuild command. 2. Run the container: Use the dockerrun command to start the container from the mirror. 3. Manage containers: manage container life cycle through dockerps, dockerstop, dockerrm and other commands.

How to build portable applications with Docker and Linux? First, use Dockerfile to containerize the application, and then manage and deploy the container in a Linux environment. 1) Write a Dockerfile and package the application and its dependencies into a mirror. 2) Build and run containers on Linux using dockerbuild and dockerrun commands. 3) Manage multi-container applications through DockerCompose and define service dependencies. 4) Optimize the image size and resource configuration, enhance security, and improve application performance and portability.

Docker and Kubernetes improve application deployment and management efficiency through container orchestration. 1.Docker builds images through Dockerfile and runs containers to ensure application consistency. 2. Kubernetes manages containers through Pod, Deployment and Service to achieve automated deployment and expansion.

Docker and Kubernetes are leaders in containerization and orchestration. Docker focuses on container lifecycle management and is suitable for small projects; Kubernetes is good at container orchestration and is suitable for large-scale production environments. The combination of the two can improve development and deployment efficiency.

Docker and Linux are perfect matches because they can simplify the development and deployment of applications. 1) Docker uses Linux's namespaces and cgroups to implement container isolation and resource management. 2) Docker containers are more efficient than virtual machines, have faster startup speeds, and the mirrored hierarchical structure is easy to build and distribute. 3) On Linux, the installation and use of Docker is very simple, with only a few commands. 4) Through DockerCompose, you can easily manage and deploy multi-container applications.

The difference between Docker and Kubernetes is that Docker is a containerized platform suitable for small projects and development environments; Kubernetes is a container orchestration system suitable for large projects and production environments. 1.Docker simplifies application deployment and is suitable for small projects with limited resources. 2. Kubernetes provides automation and scalability capabilities, suitable for large projects that require efficient management.

Use Docker and Kubernetes to build scalable applications. 1) Create container images using Dockerfile, 2) Deployment and Service of Kubernetes through kubectl command, 3) Use HorizontalPodAutoscaler to achieve automatic scaling, thereby building an efficient and scalable application architecture.

The main difference between Docker and Kubernetes is that Docker is used for containerization, while Kubernetes is used for container orchestration. 1.Docker provides a consistent environment to develop, test and deploy applications, and implement isolation and resource limitation through containers. 2. Kubernetes manages containerized applications, provides automated deployment, expansion and management functions, and supports load balancing and automatic scaling. The combination of the two can improve application deployment and management efficiency.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
