赞
踩
# 导出镜像
docker save mysql -o mysql.tar # 或者使用: docker save mysql:version > /path/mysql.tar
# 复制镜像到目标机器
scp -r mysql.tar user@ip:/opt/docker-path/images
# 导入镜像
docker load --input mysql.tar # 或者使用: docker load < mysql.tar
# 验证镜像是否导入成功
docker images -a
docker image ls --digests image_name
, 查看镜像文件各层签名,;[root@localhost ~]# docker image ls --digests postgres
REPOSITORY TAG DIGEST IMAGE ID CREATED SIZE
postgres 13 sha256:4b531ee951d9e30b5d4e62d0ba87a1f020a2343ed6d28add4e02dc48ddcd746a 6df259f38c97 4 months ago 373MB
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。