美文网首页某科学的Docker
level-1镜像の使用

level-1镜像の使用

作者: Gaolex | 来源:发表于2018-01-25 23:01 被阅读21次

    获取镜像:docker pull [选项] [Docker Registry 地址[:端口号]/]仓库名[:标签]

    eg:docker pull ubuntu:16.04

    运行:docker run -it -rm ubuntu:16.04 bash

    • -it:这是两个参数,-i:交互操作,-t:终端
    • --rm容器退出后将其删除

    列出镜像:docker image ls(显示列表包含了 仓库名 、 标签 、 镜像 ID 、 创建时间 以及 所占用的空间 。)

    镜像体积:docker system df

    列出全部镜像(包括中间层镜像):docker image ls -a

    列出部分镜像:

    • 根据仓库名列出镜像:docker image ls ubuntu
    • 列出特定的某个镜像(指定仓库名和标签):docker image ls ubuntu:16.04
    • 过滤器参数(--filter,简写-f):
      • 列出在mongo:3.2之后建立的镜像:docker image ls -f since=mongo:3.2(也可以把since换成before
      • 如果镜像构建时定义了label,还可以通过LABEL来过滤:docker image ls -f label=com.example.version=0.1

    以特定格式显示:

    • 只显示镜像ID:docker image ls -q
    • 直接列出镜像结果,只包含镜像ID和仓库名:docker image ls --format "{{.ID}}: {{.Repository}}"
    • 以表格等距显示,并且有标题行,和默认一样,不过自己定义列:docker image ls --format "table {{.ID}}\t{{.Repository}}\t{{.Tag}}"

    删除本地镜像:docker image rm [选项] <镜像1> [<镜像2> ...]

    进入容器:docker exec -it [容器名] bash

    查看容器具体改动:docker diff 容器名

    commit:docker commit [选项] <容器ID或容器名> [<仓库名>[:<标签>]]

    相关文章

      网友评论

        本文标题:level-1镜像の使用

        本文链接:https://www.haomeiwen.com/subject/ukgbaxtx.html