1.列出当前本地镜像:docker image ls
2.查看镜像历史分层:docker history 镜像名:tag
3.查看镜像具体详情:docker image inspect 镜像名:tag 可以看到容器配置主机名,工作目录,数据卷,标签等信息。
4.docker image pull nginx:1.11 从docker仓库下载nginx:1.11版本镜像
5.docker image rm busybox:latest 删除镜像
6.docker image tag nginx:latest nginx:V1 改变镜像的标签
7.docker image save nginx:1.11 > nginx1.11.tar 保存镜像重定向为本地文件
8.docker image load < nginx1.11.tar 导入本地文件
- docker image export 018eff83b7bf > busybox.tar 导出运行的容器,是一个运行的文件系统
10.docker image import busybox.tar 导入容器,导入后容器是运行中的。
总结:docker save 是导出一个镜像文件包含所有层到一个归档文件, 操作对象是镜像
docker export 是导出一个运行的容器的文件系统到一个归档文件,操作对象是容器
原文地址:https://blog.51cto.com/8922100/2480578
时间: 2024-10-11 05:42:19