Docker镜像的搜索下载以及查看删除操作

查看本地镜像:docker images

搜索镜像:docker search centos

搜索镜像并过滤是官方的:docker search --filter "is-offical=true" centos

搜索镜像并过滤大于多少颗星的:docker search --filter stars=10 centos

下载centos7镜像:docker pull centos:7

修改本地镜像名字:docker tag centos:7 mycentos:1

本地镜像的删除:docker rmi centos:7

posted @ 2020-01-26 08:56  RIP_KOBE  阅读(2040)  评论(0编辑  收藏  举报