搭建harbor私有仓库报错:unable to configure the Docker daemon with file /etc/docker/daemon.json
harbor
Harbor 是一个开源的容器镜像仓库,用于存储和管理 Docker 镜像和其他容器镜像。 * 容器镜像仓库、存储和管理 Docker 镜像和其他容器镜像 * 有什么特点:支持多种镜像格式、易于使用、安全性和访问控制
项目地址:https://gitcode.com/gh_mirrors/ha/harbor
免费下载资源
·
在搭建harbor时,客户端需要上传镜像至harbor服务器端,修改配置文件时/usr/lib/systemd/system/docker.service,然后重启docker服务的时候出现报错,通过看日志报错项,下面是报错代码
tail -f /var/log/messages
Mar 29 14:57:32 localhost dockerd: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: insecure-registries: (from flag: [192.168.241.3], from file: [192.168.241.20:5000])
解决思路:
通过日志的报错项提示在/etc/docker/daemon.json这个文件已经规定了一个仓库
1、既然日志提示/etc/docker/daemon.json有问题,那我们就去看下
cat /etc/docker/daemon.json
{
"insecure-registries":["192.168.241.20:5000"],
"registry-mirrors": ["https://9it5um2j.mirror.aliyuncs.com"]
}
这里发现这里有一个私有仓库的地址了
2、直接删除私有仓库这行
[root@localhost ~]# cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://9it5um2j.mirror.aliyuncs.com"]
}
3、再次重启docker服务
systemctl daemon-reload
systemctl restart docker
问题解决~~~
GitHub 加速计划 / ha / harbor
23.24 K
4.68 K
下载
Harbor 是一个开源的容器镜像仓库,用于存储和管理 Docker 镜像和其他容器镜像。 * 容器镜像仓库、存储和管理 Docker 镜像和其他容器镜像 * 有什么特点:支持多种镜像格式、易于使用、安全性和访问控制
最近提交(Master分支:2 个月前 )
9e55afbb
pull image from registry.goharbor.io instead of dockerhub
Update testcase to support Docker Image Can Be Pulled With Credential
Change gitlab project name when user changed.
Update permissions count and permission count total
Change webhook_endpoint_ui
Signed-off-by: stonezdj <stone.zhang@broadcom.com>
Co-authored-by: Wang Yan <wangyan@vmware.com> 9 天前
3dbfd422
Signed-off-by: wang yan <wangyan@vmware.com> 9 天前
更多推荐
已为社区贡献1条内容
所有评论(0)