首页 > 代码库 > Docker 字典
Docker 字典
File System
为了让Linux运行起来,通常需要2个file system
- boot file system (bootfs)
- 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 字典
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。