Docker镜像的搜索下载以及查看删除实战

查看本地镜像:

docker images

搜索镜像:

docker search centos

搜索镜像并过滤是官方的:

docker search --filter "is-official=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-05-10 17:33  xl4ng  阅读(446)  评论(0编辑  收藏  举报