image.png
Docker小结 - 图2

  1. #save
  2. docker save [OPTIONS] IMAGE [IMAGE...]
  3. Options:
  4. -o, --output string Write to a file, instead of STDOUT
  5. #load
  6. docker load [OPTIONS]
  7. Options:
  8. -i, --input string Read from tar archive file, instead of STDIN
  9. -q, --quiet Suppress the load output

镜像打包生成tar压缩包,可以发送压缩包给别人。

docker使用基础流程图

Docker小结 - 图3