docker推送阿里镜像仓库,解决 error pulling image configuration: Get...

推送阿里镜像

(解决 error pulling image configuration: Get "https://production.cloudflare.docker.com/registry-v2/docker/registry/ )
enter description here

上面的报错多半是这个production.cloudflare.docker.com域名解析失败(可以写dns 8.8.8.8 进行尝试),或者是解析成功但是无法访问,我们最直接的解决方法可以用阿里镜像仓库进行解决

  1. 创建自己的命名空间 并设置为公开 https://cr.console.aliyun.com/cn-hangzhou/instance/namespaces
    enter description here
  2. 设置固定密码准备进行上传
    enter description here
  3. 进行本地修改tag进行上传(注意: 这里的仓库地址可以选择地区,下面案例是走的杭州的镜像仓库,每个地区镜像仓库不互通)
docker login --username=176xxxxxxx registry.cn-hangzhou.aliyuncs.com

docker tag x602/grafana-custom:8.2.0 registry.cn-hangzhou.aliyuncs.com/x602/grafana-custom:8.2.0

docker push registry.cn-hangzhou.aliyuncs.com/x602/grafana-custom:8.2.0
  1. 进行测试验证
    镜像仓库已经有对应镜像仓库
    enter description here
docker pull registry.cn-hangzhou.aliyuncs.com/x602/grafana-custom:8.2.0

拓展

相关 dockerhub https://registry.hub.docker.com/

推送到docekrhub命令

docker login --username=x602 --password=xxxxxx
docker tag grafana-custom x602/grafana-custom 
docker push x602/grafana-custom

posted @ 2022-03-14 14:49  鸣昊  阅读(7392)  评论(0编辑  收藏  举报