- Learn OpenShift
- Denis Zuev Artemii Kropachev Aleksey Usov
- 138字
- 2021-08-13 16:03:42
Container image layers
As previously mentioned, a Docker image contains a number of layers that are combined into a single filesystem using a storage driver. The layers (also called intermediate images) are generated when commands are executed during the Docker image build process. Usually, Docker images are created using a Dockerfile, the syntax of which will be described later. Each layer represents an instruction in the image's Dockerfile.
Each layer, except the very last one, is read-only:
A Docker image usually consists of several layers, stacked one on top of the other. The top layer has read-write permissions, and all the remaining layers have read-only permissions. This concept is very similar to the copy-on-write technology. So, when you run a container from the image, all the changes are done to this top writable layer.
- 操作系統(tǒng)實用教程(Linux版)
- Getting Started with oVirt 3.3
- 阿里云數(shù)字新基建系列:云原生操作系統(tǒng)Kubernetes
- Kubernetes網(wǎng)絡(luò)權(quán)威指南:基礎(chǔ)、原理與實踐
- Alfresco 4 Enterprise Content Management Implementation
- Linux內(nèi)核觀測技術(shù)BPF
- 無蘋果不生活 The New iPad隨身寶典
- Kali Linux 2018:Windows Penetration Testing
- Windows 7實戰(zhàn)從入門到精通
- Building Telephony Systems With Asterisk
- 從實踐中學習Windows滲透測試
- Docker容器技術(shù)與應(yīng)用
- Hadoop Operations and Cluster Management Cookbook
- Mastering AWS CloudFormation
- C#實用教程(第2版)