harbor docker compose 安装

安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 下载
wget https://github.com/goharbor/harbor/releases/download/v2.4.0/harbor-online-installer-v2.4.0.tgz
mkdir /data
tar xf harbor-online-installer-v2.4.0.tgz -C /data
cd /data/harbor
cp harbor.yml.tmpl harbor.yml

vi harbor.yml
# 修改配置
hostname: 本机ip
# 注释https
#https:
# https port for harbor, default is 443
# port: 443
# The path of cert and key files for nginx
# certificate: /your/certificate/path
# private_key: /your/private/key/path

# 执行安装
./install.sh

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!