历史查看 : 查看一个本地镜像的历史操作信息
    格式 : docker history 【镜像名称:镜像版本】 或者[镜像id]

    实时操作
    docker history nginx:latest
    image.png

    详细信息 : 查看 一个镜像的详细信息
    格式 :docker inspct 【镜像名称:镜像版本】 或者[镜像id]
    实时操作
    docker inspect nginx:latest
    image.png
    创建镜像 :讲一个镜像模板 导入到我们镜像当中
    格式 :cat [导入模板名称] | docker import - [设置镜像名称]
    实时操作
    cat ubuntu-16.04-x86_64.tar.gz | docker import - ubuntu-panda