dock的入门基础命令以及镜像加速

查看本地镜像: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

 

阿里云镜像加速器配置地址:https://cr.console.aliyun.com/cn-shenzhen/instances/mirrors

配置步骤:vi /etc/docker/daemon.json

dock的入门基础命令以及镜像加速

 

 重启:systemctl daemon-reload && systemctl restart docker

上一篇:centos 命令记录


下一篇:centos 发布rpm包