标签:creat rbac == ade begin themes localhost 记录 离线
Harbor 是由 VMware 公司中国团队为企业用户设计的 Registry server 开源项目,包括了权限管理(RBAC)、LDAP、审计、管理界面、自我注册、HA 等企业必需的功能,同时针对中国用户的特点,设计镜像复制和中文支持等功能。
作为一个企业级私有 Registry 服务器,Harbor 提供了更好的性能和安全。提升用户使用Registry构建和运行环境传输镜像的效率。Harbor 支持安装在多个 Registry 节点的镜像资源复制,镜像全部保存在私有 Registry 中, 确保数据和知识产权在公司内部网络中管控。另外,Harbor 也提供了高级的安全特性,诸如用户管理,访问控制和活动审计等。
优点:
运行环境是Centos 7.8
需要安装docker并运行
yum -y install docker-ce # 安装docker
systemctl start docker # 运行docker服务
需要安装docker-compose
yum -y install docker-compose
1、下载安装包
# 版本为1.10.3
[root@Docker ~]# wget https://github.com/goharbor/harbor/releases/download/v1.10.3/harbor-offline-installer-v1.10.3.tgz
2、解压
[root@Docker ~]# tar xf harbor-offline-installer-v1.10.3.tgz
3、安装
[root@Docker ~]# cd harbor
# 修改hostnmae
[root@Docker harbor]# vim harbor.yml
将hostname改成你本机IP即可
# 注释https,不然在安装的时候会报错:ERROR:root:Error: The protocol is https but attribute ssl_cert is not set
其他配置保持默认
[root@Docker harbor]# ./install.sh
可以看到Harbor已经成功安装并启动了。
4、查看Harbor的状态
5、访问私服
172.168.1.249,默认用户名密码为:admin/Harbor12345
登录后的第一件事情永远都是修改默认密码。然后就可以在项目管理中新建和管理项目了。不过默认情况下的项目library是公开的,如果你要使用这个项目,而且域名放在公网上,请取消公开。
1、安装Docker
[root@localhost ~]# curl -sSL https://get.daocloud.io/docker | sh
# 启动Docker
[root@localhost ~]# systemctl start docker
2、配置客户端信任http
由于从docker1.3.2版本开始,使用registry时,必须使用TLS保证其安全。我们不用https的话,需要在客户机中增加一个配置文件。
[root@localhost ~]# vim /etc/docker/daemon.json
# 重启Docker
[root@localhost ~]# systemctl restart docker
3、客户端登录Harbor
[root@localhost ~]# docker login -u admin -p Harbor12345 172.168.1.249
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
Error response from daemon: Get https://172.168.1.249/v2/: dial tcp 172.168.1.249:443: connect: connection refused
4、修改docker.service
# 查找docker.service 所在的位置
[root@localhost ~]# find / -name docker.service
[root@localhost ~]# vim /usr/lib/systemd/system/docker.service
# 在ExecStart后面加入--insecure-registry=172.168.1.249
5、重新启动服务
[root@localhost ~]# systemctl daemon-reload
[root@localhost ~]# systemctl reload docker
[root@localhost ~]# docker login -u admin -p Harbor12345 172.168.1.249
6、验证推送镜像
# pull镜像
[root@localhost ~]# docker pull hello-world
Using default tag: latest
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:d58e752213a51785838f9eed2b7a498ffa1cb3aa7f946dda11af39286c3db9a9
Status: Downloaded newer image for hello-world:latest
docker.io/library/hello-world:latest
# 打标签
[root@localhost ~]# docker tag hello-world 172.168.1.249/library/hello-world:v1
# 推送到Harbor
[root@localhost ~]# docker push 172.168.1.249/library/hello-world:v1
The push refers to repository [172.168.1.249/library/hello-world]
9c27e219663c: Pushed
v1: digest: sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042 size: 525
7、查看Harbor
显示已经成功上传了。
8、删除本地的镜像,从Harbor上pull
# 查看本地镜像
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
172.168.1.249/library/hello-world v1 bf756fb1ae65 5 months ago 13.3kB
hello-world latest bf756fb1ae65 5 months ago 13.3kB
# 删除本地镜像
[root@localhost ~]# docker rmi -f bf756fb1ae65
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
# 从Harbor上pull镜像
[root@localhost ~]# docker pull 172.168.1.249/library/hello-world:v1
v1: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042
Status: Downloaded newer image for 172.168.1.249/library/hello-world:v1
172.168.1.249/library/hello-world:v1
# 查看镜像
REPOSITORY TAG IMAGE ID CREATED SIZE
172.168.1.249/library/hello-world v1 bf756fb1ae65 5 months ago 13.3kB
原文 https://www.i7ti.cn/1048.html
标签:creat rbac == ade begin themes localhost 记录 离线
原文地址:https://www.cnblogs.com/axin85/p/13942666.html