转自: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