docker push 私有镜像仓库失败

推送镜像报错:unable to ping registry endpoint https://192.168.0.122:5000/v0/
v2 ping attempt failed with error: Get https://192.168.0.122:5000/v2/: dial tcp 192.168.0.122:5000: connection refused

解决办法,以http方式重新运行docker看了网上好多的是修改配置文件 那是老版本的 ,现在的版本docker启动根本不加载那么配置文件,所以自己手动添加
使用命令/usr/bin/dockerd –insecure-registry 192.168.0.122:5000 & 启动

你可能感兴趣的:(docker push 私有镜像仓库失败)