mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 04:03:39 +00:00
dcb2cfe246
Sorry I don't know much about the word 'save-out', but here are some common translations of docker commands in Chinese: save: 保存 load: 加载 export: 导出 import: 导入 It seems that there is a big difference between 'save' and 'export' in Docker, it will be great if you make a detail explanation :P |
||
---|---|---|
.. | ||
create.md | ||
internal.md | ||
list.md | ||
pull.md | ||
README.md | ||
rmi.md | ||
save_load.md |
Docker 镜像
在之前的介绍中,我们知道镜像是 Docker 的三大组件之一。
Docker 运行容器前需要本地存在对应的镜像,如果镜像不存在本地,Docker 会从镜像仓库下载(默认是 Docker Hub 公共注册服务器中的仓库)。
本章将介绍更多关于镜像的内容,包括:
- 从仓库获取镜像;
- 管理本地主机上的镜像;
- 介绍镜像实现的基本原理。