前言
略
导入、导出镜像
导出镜像
- 查看镜像
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
- 导出镜像
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
导入镜像
- 导入镜像
shell>docker load < docker_images_nacos_v2.2.1.tar
- 查看镜像
shell> docker images
REPOSITORY TAG