- 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.
- Linux網絡管理與配置(第2版)
- 嵌入式Linux開發技術
- Learning Android Intents
- Linux性能優化
- Java EE 8 Design Patterns and Best Practices
- Windows Server 2012網絡操作系統企業應用案例詳解
- Linux系統安全基礎:二進制代碼安全性分析基礎與實踐
- Microsoft Operations Management Suite Cookbook
- jQuery UI Cookbook
- Fedora 12 Linux應用基礎
- Linux基礎使用與案例
- Cassandra 3.x High Availability(Second Edition)
- Windows 7實戰從入門到精通
- Windows Vista終極技巧金典
- Java EE 7 Developer Handbook