docker镜像文件导入与导出
2020-05-26 本文已影响0人
Youngmon
拉取镜像
docker pull hello-world
docker images
导出镜像
docker save -o myhello hello-world
ls myhello
导出镜像在本地 hello-world
导入保存镜像
#删除hello-world
#docker rm -f hello-world
docker load -i myhello
docker pull hello-world
docker images
docker save -o myhello hello-world
ls myhello
导出镜像在本地 hello-world
#删除hello-world
#docker rm -f hello-world
docker load -i myhello