1. 镜像导入导出
-
显示 当前的镜像
$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE busybox latest 83aa35aa1c79 7 days ago 1.22MB
-
导出镜像
$ docker save -o busybox.tar busybox:latest
-
导入镜像
$ docker load --input ./busybox.tar a6d503001157: Loading layer [==================================================>] 1.437MB/1.437MB Loaded image: busybox:latest