镜像导出导入 save load

  • 查看镜像
  1. [root@localhost www]# docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. codehi/php 7.1-fpm 132348fee2f1 2 hours ago 358MB
  4. codehi/nginx v1 1d8fca63675a 2 hours ago 109MB
  5. codehi/nginx <none> f4d8899243fd 3 hours ago 109MB
  6. nginx <none> f09fe80eb0e7 7 days ago 109MB
  7. php 7.1-fpm 7c5ccac5d47f 7 days ago 358MB
  8. centos latest 1e1148e4cc2c 2 months ago 202MB

导出镜像 save

  1. # 单个镜像导出
  2. docker save [OPTIONS] IMAGE [IMAGE...]
Options

-o :输出到的文件。

现在我们来导出之前上传的codehi/php:7.1-fpmcodehi/nginx:v1两个镜像,看到了保存成的codehi-nginx-php7.1-fpm.tar的文件。

  1. [root@localhost www]# docker save codehi/php:7.1-fpm codehi/nginx:v1 > codehi-nginx-php7.1-fpm.tar
  2. [root@localhost www]# ls
  3. codehi-nginx-php7.1-fpm.tar demo.php info.php phpinfo.php

然后我们把这个包发送到另一台服务器, 我们先查看下另一台服务器的镜像,是没有刚才打包的两个镜像的。

  1. [root@localhost ~]# docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. bitnami/php-fpm latest 1f36abd1d1cb 30 hours ago 244MB
  4. nginx latest f09fe80eb0e7 7 days ago 109MB
  5. hello-world latest fce289e99eb9 6 weeks ago 1.84kB
  6. ubuntu 15.10 9b9cb95443b5 2 years ago 137MB
  7. training/webapp latest 6fae60ef3446 3 years ago 349MB

导入镜像 load

  1. docker load [options]
Options

-i, –input string 从tar归档文件读取镜像,而不是标准输入流
-q, –quiet 禁止读入输出

用法:

  1. [root@localhost ~]# docker load -i /opt/codehi-nginx-php7.1-fpm.tar
  2. ec6f4f0a90dc: Loading layer [==================================================>] 3.584kB/3.584kB
  3. c68025fbc229: Loading layer [==================================================>] 213.6MB/213.6MB
  4. 63fc1837f67c: Loading layer [==================================================>] 5.12kB/5.12kB
  5. b18663816062: Loading layer [==================================================>] 13.48MB/13.48MB
  6. 7023392a68c9: Loading layer [==================================================>] 4.096kB/4.096kB
  7. 5816667014f3: Loading layer [==================================================>] 80.67MB/80.67MB
  8. de6d54c21a3c: Loading layer [==================================================>] 11.78kB/11.78kB
  9. 2160d51b2f76: Loading layer [==================================================>] 29.7kB/29.7kB
  10. 92b33b2433eb: Loading layer [==================================================>] 3.584kB/3.584kB
  11. Loaded image: `codehi/php:7.1-fpm```
  12. 67e805da8eae: Loading layer [==================================================>] 15.36kB/15.36kB
  13. Loaded image: codehi/nginx:v1

可以看到成功加载到了codehi/php:7.1-fpmcodehi/nginx:v1两个镜像

  1. [root@localhost ~]# docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. codehi/php 7.1-fpm 132348fee2f1 2 hours ago 358MB
  4. codehi/nginx v1 1d8fca63675a 2 hours ago 109MB
  5. bitnami/php-fpm latest 1f36abd1d1cb 30 hours ago 244MB
  6. nginx latest f09fe80eb0e7 7 days ago 109MB
  7. hello-world latest fce289e99eb9 6 weeks ago 1.84kB
  8. ubuntu 15.10 9b9cb95443b5 2 years ago 137MB
  9. training/webapp latest 6fae60ef3446 3 years ago 349MB

然后就可以和pull下载的镜像一样使用了。

容器导出导入 export import

  • 查看容器
  1. [root@localhost ~]# docker ps -a
  2. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  3. 51adb2df6004 php:7.1-fpm "docker-php-entrypoi猞" 24 hours ago Exited (255) About a minute ago 0.0.0.0:9000->9000/tcp myphp-fpm
  4. 3218b3ad4e47 f09fe80eb0e7 "nginx -g 'daemon of猞" 25 hours ago Exited (255) About a minute ago 0.0.0.0:80->80/tcp mynginx

容器导出 export

  1. docker export [options] container
Options

-o :将输入内容写到文件。

用法:

  1. docker export -o codehi-php7.1-fpm.tar myphp-fpm

容器导入 import

  1. docker import [OPTIONS] file|URL|- [REPOSITORY[:TAG]]
Options

-c :应用docker 指令创建镜像;
-m :提交时的说明文字;
用法:

  1. docker import codehi-php7.1-fpm.tar codehi/php:7.1-fpm

两个方法的区别

  • export命令导出的tar文件略小于save命令导出的
  • export 导出(import导入)是根据容器拿到的镜像,再导入时会丢失镜像所有的历史,所以无法进行回滚操作(docker tag );而save保存(load加载)的镜像,没有丢失镜像的历史,可以回滚到之前的层(layer)。(查看方式:docker images —tree)

使用场景

  • 若是只想备份images,使用save、load即可
  • 若是在启动容器后,容器内容有变化,需要备份,则使用export、import