mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-16 11:33:40 +00:00
12 lines
546 B
Markdown
12 lines
546 B
Markdown
##docker容器
|
||
|
||
当我们运行`docker run -i -t ubuntu /bin/bash`命令时,docker 在后台运行的操作如下:
|
||
|
||
* 如果本地有ubuntu这个image就利用它,否则从公有仓库下载
|
||
* 之后从image创建一个容器
|
||
* 分配一个文件系统,并在只读的image层外面挂载一层可读写的层
|
||
* 从宿主主机配置的网桥接口中桥接一个虚拟接口到容器中去
|
||
* 从地址池配置一个ip地址给容器
|
||
* 执行你指定的程序,在这里启动一个/bin/bash进程
|
||
* -i -t 指定标准输入和输出
|