- 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ài):開啟萬物互聯(lián)的智慧新時代
- 高性能Linux服務(wù)器構(gòu)建實戰(zhàn):運維監(jiān)控、性能調(diào)優(yōu)與集群應(yīng)用
- Linux性能優(yōu)化
- VMware NSX Cookbook
- AWS Development Essentials
- 一學(xué)就會:Windows Vista應(yīng)用完全自學(xué)手冊
- 計算機應(yīng)用基礎(chǔ)(Windows 7+Office 2016)
- Windows 10從新手到高手
- Hadoop Real-World Solutions Cookbook
- Android應(yīng)用性能優(yōu)化最佳實踐
- 完美應(yīng)用Ubuntu(第4版)
- 計算機操作系統(tǒng)實用教程
- CentOS 8 Linux系統(tǒng)管理與一線運維實戰(zhàn)
- 自己動手寫Docker
- OpenStack從零開始學(xué)