导出、导入Docker镜像

本文介绍了如何在不使用仓库的情况下将Docker镜像从一台主机迁移到另一台主机的方法。具体步骤包括:使用`docker save`命令将镜像保存为tar文件;通过常规文件传输工具如`cp`或`scp`进行文件传输;最后利用`docker load`命令将tar文件加载回Docker。
摘要由CSDN通过智能技术生成

转自:http://stackoverflow.com/questions/23935141/how-to-copy-docker-images-from-one-host-to-another-without-via-repository

You will need to save the docker image as a tar file:

docker save -o
Then copy your image to a new system with regular file transfer tools such as cp or scp. After that you will have to load the image into docker:

docker load -i
PS: You may need to sudo all commands.

导出 Docker 镜像:

docker save repo:tag -o <导出路径.tar>
示例:docker save wurstmeister/kafka:2.12-2.2.2 -o kafka-2.12-2.2.2-container.tar

导入 Docker 镜像:

docker load -i 导出的镜像路径.tar
docker load < 导出的镜像路径.tart
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值