1.安装harbor
[root@harbor opt]# cd /opt
[root@harbor opt]# wgethttps://storage.googleapis.com/harbor-releases/harbor-offline-installer-v1.6.1.tgz
[root@harbor opt]# tar -xf harbor-offline-installer-v1.6.1.tgz
[root@harbor opt]# cd harbor/
[root@harbor opt]# vim harbor.cfg
hostname = ip地址
ui_url_protocol = http \选择http方式
harbor_admin_password = 123456 \harbor web访问的密码
[root@harbor harbor]# ./prepare \加载配置
[root@harbor harbor]# ./install.sh \安装harbor
安装完成后,提示通过“http://IP” 访问harbor,用户名是admin,密码是之前设置的123456
2.上传镜像到harbor仓库
在本机配置harbor仓库http可信
/etc/docker/daemon.json中添加“"insecure-registries":["IP地址"]”,重启docker
不然会报错,默认是走https的
网友评论