赞
踩
环境 centos7.9(确保能上外网)
一、部署docker
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo && yum makecache all
yum install docker-ce -y
二、部署docker-compose
能yum安装就yum install docker-compose -y
不能yum 就 curl -L https://get.daocloud.io/docker/compose/releases/download/1.29.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version
三、安装harbor
wget https://github.com/goharbor/harbor/releases/download/v2.4.3/harbor-offline-installer-v2.4.3.tgz
tar -zxvf harbor-offline-installer-v2.4.3.tgz
cd harbor
vim harbor.yml 更改hostname为你的域名 更改域名证书路径(
没有购买证书就自签:
openssl genrsa -out ca.key 4096
openssl req -x509 -new -nodes -sha512 -days 36500 -subj "/C=CN/ST=Beijing/L=Beijing/O=example/OU=Personal/CN=你的域名" -key ca.key -out ca.crt
执行./prepare
执行./install.sh
都没有问题的 启动 harbor
执行 docker-compose up 启动 后台启动加-d
执行 docker-compose down 关闭
执行 docker-compose restart 重启
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。