溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Harbor 安裝部署

發(fā)布時(shí)間:2020-07-27 10:26:41 來源:網(wǎng)絡(luò) 閱讀:885 作者:有功夫 欄目:云計(jì)算

環(huán)境信息:

操作系統(tǒng) 主機(jī)名 IP地址
CentOS7.6 harbor 192.168.61.238

Harbor 安裝部署

官方發(fā)布地址:<https://github.com/goharbor/harbor/releases>
程序版本依賴:docker-ce docker-compose 1.18.0+ .

Harbor支持在線安裝及離線安裝,此文章采用在線離線安裝的形式,且安裝版本為1.8.3。

一、下載安裝程序

# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
# yum install -y yum-utils
# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# yum install docker-compose -y
# yum install docker-ce –y
# systemctl enable docker
# systemctl start docker
# 下載
# wget https://storage.googleapis.com/harbor-releases/release-1.8.0/harbor-offline-installer-v1.8.3.tgz

# 解壓
# tar -zxvf harbor-offline-installer-v1.8.3.tgz
# 

二、配置

配置參數(shù)位于文件harbor.yml中。

可根據(jù)自己的需求設(shè)定。

這里的https證書是我在騰訊云申請(qǐng)的免費(fèi)SSL證書,你如果在騰訊云注冊(cè)有域名也可以在這里 <https://console.cloud.tencent.com/ssl> 直接申請(qǐng),當(dāng)然你也可以使用免費(fèi)證書的申請(qǐng)。

也可以自簽證書:

openssl req -x509 -nodes -days 36500 -newkey rsa:2048 -keyout /date/cert/server.key -out
/date/cert/server.crt
hostname: 192.168.61.238

# https related config
https:
  port: 443
  certificate: /data/cert/server.crt
  private_key: /data/cert/server.key

harbor_admin_password: youpassword

# The default data volume
data_volume: /data/harbor/data

三、安裝

./install
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI