码迷,mamicode.com
首页 > 其他好文 > 详细

Docker 字典

时间:2015-01-26 19:09:35      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

File System
为了让Linux运行起来,通常需要2个file system

  1. boot file system (bootfs)
  2. root file system (rootfs)

在传统的Linux boot, kernel首先mount(挂载)rootfs, 此时为read-only模式, 然后检查integrity(完整性), 接着切换整个rootfs为read-write模式

Docker与传统的Linux有些不同, 一样mount(挂载)rootfs, 也是进入read-only模式, 跟传统Linux一样,但之后不是切换到read-write模式, 而是采取union mount, 把read-write file system加到read-only file system之上. 事实上有多个read-only相互叠在一起,我门把这些file system看成是layer


union file system = read-write layer + read-only layer

在Docker的术语中,只读的layer称之为image. An image never changes.

Docker 字典

标签:

原文地址:http://www.cnblogs.com/jHenry/p/4250824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!