Docker安装Harbor(docker镜像服务器)
Docker安装Harbor(docker镜像服务器)
# 1,把离线安装包(harbor-offline-installer-v1.10.10.tgz)上传到服务器上
# 2、解压
tar -zxvf harbor-offline-installer-v1.10.10.tgz -C /mydata/harbor
1
# 3、编辑配置文件
cat harbor.yml
hostname改成IP地址
port端口改为你访问的端口
密码:
注释掉https
# https related config
# https:
# https port for harbor, default is 443
# port: 443
# The path of cert and key files for nginx
# certificate: /your/certificate/path
# private_key: /your/private/key/path
1
2
3
4
5
6
7
2
3
4
5
6
7
# 4、启动harbor
- ./install.sh
- 注意:harbor里面自带nginx和redis 先删除这两个docker容器
# 5、访问地址:http://192.168.1.5:86/
- 用户名:admin
- 密码:Harbor12345
# 6、登录harbor命令
- docker login -u admin -p Harbor12345 192.168.1.5:86
- 推送镜像到harbor:docker push 192.168.1.5:86/repo/mysql:5.7
- 级联删除关联镜像:docker rmi 9cfcce23593a -f
上次更新: 2024/01/18, 15:19:41