Docker导入和导出镜像

导出镜像

推荐使用:导出镜像(这样导出的镜像导入的时候不需要重命名镜像名称和TAG)

docker save -o nginx.tar nginx:1.22

不推荐:不指定镜像名称和TAB则需要再导入后重命名镜像

docker save [镜像ID] > nginx.tar

如果没有带后面版本号TAG就是latest,后文同理

docker save -o nginx.tar nginx

导入镜像

docker load < nginx.tar

如上面所说如果没有指定镜像名称和TAG,需要重命名镜像名称和TAG

docker tag [镜像ID] nginx:1.22

同理不给定TAG则TAG为latest

docker tag [镜像ID] nginx

发表评论

邮箱地址不会被公开。 必填项已用*标注