本文主要是介绍打包 docker 容器镜像到另一台电脑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
# 提交容器为镜像
<container_id> 容器id
my_migration_image 镜像名称
docker commit <container_id> my_migration_image
# 保存镜像为tar文件
docker save my_migration_image > my_migration_image.tar
在另一台电脑上导入上面的镜像,请阅读
docker 镜像文件 centos7 系统 lnmp 环境 php8.2 php5.2 php7.4-CSDN博客
这篇关于打包 docker 容器镜像到另一台电脑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!