如何在不使用存储库的情况下将Docker映像从一台机器传输到另一台机器,无论是私有还是公共的?
我在VirtualBox中创建了自己的映像,完成后,我尝试部署到其他机器上以获得实际使用。
由于它基于我自己的镜像(如Red Hat Linux),因此无法从Dockerfile中重新创建。我的dockerfile不容易移植。
有没有简单的命令可以使用?还是另一种解决方案?
如何在不使用存储库的情况下将Docker映像从一台机器传输到另一台机器,无论是私有还是公共的?
我在VirtualBox中创建了自己的映像,完成后,我尝试部署到其他机器上以获得实际使用。
由于它基于我自己的镜像(如Red Hat Linux),因此无法从Dockerfile中重新创建。我的dockerfile不容易移植。
有没有简单的命令可以使用?还是另一种解决方案?
当前回答
根据@kolypto的回答,这对我来说很有用,但只适用于docker加载的sudo:
docker save <image> | bzip2 | pv | ssh user@host sudo docker load
或者如果您没有/不想安装pv:
docker save <image> | bzip2 | ssh user@host sudo docker load
无需手动压缩或类似操作。
其他回答
对于容器文件系统的扁平导出,请使用;
docker导出CONTAINER_ID>my_CONTAINER.tar
使用cat my_container.tar | docker import-导入所述图像。
保存所有图像的最佳方法如下:
docker save $(docker images --format '{{.Repository}}:{{.Tag}}') -o allimages.tar
以上代码将保存allimages.tar中的所有图像,要加载图像,请转到保存图像的目录并运行以下命令:
docker load -i allimages.tar
只需确保在PowerShell中而不是在Commad Prompt中使用此命令
您可以使用sshfs:
$ sshfs user@ip:/<remote-path> <local-mount-path>
$ docker save <image-id> > <local-mount-path>/myImage.tar
1.从注册表中提取图像或存储库。
docker pull[选项]名称[:TAG|@DIGEST]
2.将其保存为.tar文件。
docker save[选项]图像[图像…]
例如:
docker pull hello-world
docker save -o hello-world.tar hello-world
通过gzip命令保存和加载docker图像的最快方法:
docker save <image_id> | gzip > image_file.tgz
要在另一台服务器上加载压缩图像,请立即使用此命令,它将被识别为压缩图像:
docker load -i image_file.tgz
要重命名或重新标记图像,请使用:
docker image tag <image_id> <image_path_name>:<version>
例如:
docker image tag 4444444 your_docker_or_harbor_path/ubuntu:14.0