前言

导入、导出镜像

导出镜像

  1. 查看镜像
shell> docker images
REPOSITORY                                      TAG                IMAGE ID       CREATED         SIZE
nacos/nacos-server                              v2.2.1             faff56ad2ef5   16 months ago   1.17GB
docker.elastic.co/elasticsearch/elasticsearch   7.10.0             37190fe5beea   3 years ago     774MB
  1. 导出镜像
shell> docker save faff56ad2ef5 > docker_images_nacos_v2.2.1.tar

或者

shell> docker save -o docker_images_nacos_v2.2.1.tar nacos/nacos-server:v2.2.1

导入镜像

  1. 导入镜像
shell>docker load < docker_images_nacos_v2.2.1.tar
  1. 查看镜像
shell> docker images
REPOSITORY      TAG       IMAGE ID       CREATED         SIZE
                          faff56ad2ef5   16 months ago   1.17GB
  1. 重命名镜像
shell> docker tag faff56ad2ef5 nacos:v2.2.1
  1. 再次查看镜像
shell> docker images
REPOSITORY      TAG       IMAGE ID       CREATED         SIZE
nacos           v2.2.1    faff56ad2ef5   16 months ago   1.17GB

从容器导出,导入镜像

从容器导出

  1. 查看容器
shell> docker ps -a
CONTAINER ID   IMAGE          COMMAND        CREATED         STATUS                     PORTS        NAME
3530f4b0b8ed   hello-world    "/hello"       11 months ago   Exited (0) 11 months ago                strange_noether                                                       
  1. 从容器导出
shell> docker export 3530f4b0b8ed > docker_container_hello-world.tar

导入镜像

  1. 导入镜像
shell> docker import - new-hello-world < docker_container_hello-world.tar
  1. 查看镜像
shell> docker images
REPOSITORY                                      TAG                IMAGE ID       CREATED          SIZE
new-hello-world                                 latest             e8705c3d6974   15 seconds ago   13.3kB
Logo

北京人形旗下天工造物具身智能开源社区,聚焦具身天工与慧思开物两大平台

更多推荐