forked from aqzt/kjyw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# harbor | ||
|
||
## docker快速安装harbor | ||
## 有问题可以反馈 https://aq2.cn/ | ||
|
||
``` | ||
bash install-harbor.sh | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh | ||
## docker快速安装harbor | ||
## 有问题可以反馈 https://aq2.cn/ | ||
## 先安装 docker 17.06.0-ce和 docker-compose 1.18.0以上版本 | ||
mkdir -p /opt/soft | ||
cd /opt/soft | ||
wget https://github.com/goharbor/harbor/releases/download/v1.10.2/harbor-offline-installer-v1.10.2.tgz | ||
|
||
tar xvf harbor-offline-installer-v1.10.2.tgz | ||
|
||
cd harbor | ||
## vi harbor.yml 修改配置 和 HTTPS | ||
|
||
bash install.sh | ||
## 执行安装脚本 | ||
echo ok |