安装
1、安装必要的一些系统工具
yum install -y yum-utils device-mapper-persistent-data lvm22、添加阿里云源信息
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
3、更新安装docker-ce
yum makecache yum install docker-ce -y4、安装docker-compose
yum install docker-compose -y5、下载harbor
下载地址:
http://harbor.orientsoft.cn/下载
运行如下命令进行下载:
wget http://harbor.orientsoft.cn/harbor-v1.5.0/harbor-offline-installer-v1.5.0.tgz
6、解压并进入文件夹(解压完之后有个压缩包还需要解压)
tar xvf harbor-offline-installer-v1.5.0.tgz cd harbor/ tar xvf harbor.v1.5.0.tar.gz
7、修改如下配置文件参数
hostname = 10.168.1.254
8、启动docker服务
systemctl start docker systemctl enable docker
9、运行install.sh脚本进行安装harbor
sh install.sh
出现如下表示安装成功
10、浏览器访问http://10.168.1.254测试
默认用户名密码为:
admin/Harbor12345