How to save the docker image locally

1. View the mirror image

docker images

insert image description here
2. Save to local

docker save 999c20aee5da > /home/artipub.tar 999c20aee5da为镜像ID

docker save : Save the specified image as a tar archive

Docker save command | rookie tutorial

Guess you like

Origin blog.csdn.net/qq_40822132/article/details/131092585