Tarbor 搭建
felix9ia ... 2021-3-15 小于 1 分钟
# Tarbor 搭建
# 下载
# 配置
修改 harbor.yml
的 hostname
和 http.port
hostname: cp.wingchain.cn
# http related config
http:
# port for http, default is 80. If https enabled, this port will redirect to https port
port: 8686
1
2
3
4
5
6
7
2
3
4
5
6
7
# 运行
分初始化运行和再次运行
# 初始化运行
第一次要构建容器
sh ./install.sh
1
# 再次运行
这次就只需要运行即可
docker-compose up
1
# 推送
需要先登录
docker login cp.xxx.cn:8686
1
输入账号和密码,之后会显示login success
即可。
# 代理镜像仓库
拉取缓存
docker pull cp.wingchain.cn:8686/proxy/library/zookeeper:latest
1
2
2