1.docker建立私有仓库
docker run -d --name reg -p 5000:5000 registry
2.查询私有仓库的镜像
curl http://192.168.26.128:5000/v2/_catalog
(1).配置加速器 在etc/docker下新建daemon.json
{
"registry-mirrors":["https://g0vrs7m3.mirror.aliyuncs.com"],
"insecure-registries":["192.168.26.128:5000"]
}
注: https://g0vrs7m3.mirror.aliyuncs.com是在阿里云上申请的地址,
申请dizh地址为https://cr.console.aliyun.com/cn-hangzhou/instances/images
192.168.26.128:5000 为本地的IP地址
3.push镜像
4.查看私有镜像某个镜像的版本hao号