Docker镜像管理之Harbor
作者:互联网
github: https://github.com/goharbor/harbor
官网:https://goharbor.io/docs/2.5.0/
[安装]
1. 查看是否达到安装条件
2.根据实际情况选择 在线版本和离线版本
-
Online installer: The online installer downloads the Harbor images from Docker hub. For this reason, the installer is very small in size.
-
Offline installer: Use the offline installer if the host to which are deploying Harbor does not have a connection to the Internet. The offline installer contains pre-built images, so it is larger than the online installer.
我这里使用的在线版本进行安装:
3.下载并安装
wget https://github.com/goharbor/harbor/releases/download/v2.5.0/harbor-online-installer-v2.5.0.tgz tar -zxvf harbor-online-installer-v2.5.0.tgz
修改配置文件:
mv harbor.yml.tmpl harbor.yml vim harbor.yml
如果配置的域名或使用指定的端口的话, 需要修改 hostname:
如果80端口有占用的话, 需要修改参数: port
如果没有使用https的话, 需要将参数进行注释: https 部分
extenal_url: 可以与hostname 保持一致
注意点: 可以修改这里的admin登录的密码 harbor_admin_password
安装:
./install.sh
标签:goharbor,Harbor,online,harbor,https,installer,镜像,Docker,yml 来源: https://www.cnblogs.com/xingxia/p/docker_harbor.html