如何将镜像拷贝到另一台机器 /docker images 导出
要部署的客户服务器并不能连外网。这时就可以使用 docker save 将用到的镜像打个包,然后拷贝到客户服务器上使用 docker load 载入
step1: 查看镜像
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
linuxserver/libreoffice latest 157891003e06 7 days ago 1.63GB
mysql 5.7 dd6675b5cfea 4 weeks ago 569MB
step2: 将镜像打包为文件
docker save 157891003e06 > libreoffice.tar
其中: 157891003e06 是镜像id
libreoffice.tar 中是你自己给将打包的文件命名
官方解释参考: docker save | Docker Documentation
step3: 将镜像载入到对应机器
[root@localhost ~]# docker load < libreoffice.tar