企业级私有镜像仓库Harbor
Posted cgcong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了企业级私有镜像仓库Harbor相关的知识,希望对你有一定的参考价值。
1.安装docker
#安装docker $ yum install docker # 安装docker ... $ systemctl start docker # 运行docker服务 $ yum install docker-compose #需要安装docker-compose
2.下载harbor
#新下载地址 wget https://github.com/goharbor/harbor/releases/download/v1.9.4/harbor-offline-installer-v1.9.4.tgz
#https配置参考
https://github.com/goharbor/harbor/blob/v1.9.4/docs/configure_https.md
3.生成证书
#解压harbor $ tar zxvf harbor-offline-installer-v1.9.4.tgz $ cd harbor $ mkdir ssl $ cd ssl/ #生成key openssl genrsa -out ca.key 4096 #生成证书 openssl req -x509 -new -nodes -sha512 -days 3650 -subj "/C=TW/ST=Taipei/L=Taipei/O=example/OU=Personal/CN=yourdomain.com" -key ca.key -out ca.crt
4.配置安装
#修改配置文件 $ vi Harbor.yml #安装 $ sudo ./install.sh #具体配置参考: https://github.com/goharbor/harbor/blob/v1.9.4/docs/installation_guide.md
.
以上是关于企业级私有镜像仓库Harbor的主要内容,如果未能解决你的问题,请参考以下文章