docker常用命令

  1. copy images
    docker save -o <path for generated tar file> <image name>
    docker load -i <path to image tar file>
    You should add filename (not just directory) with -o, for example: docker save -o c:/myfile.tar centos:16
原文地址:https://www.cnblogs.com/paopaocheng/p/11629843.html