Docker安装镜像仓库的三种方法
2020-11-06 本文已影响0人
潘晓华Michael
一、docker-distribution
- 安装docker-distribution软件
yum install docker-distribution
- 配置registry/config.yml文件
# /etc/docker-distribution/registry/config.yml
version: 0.1
log:
fields:
service: registry
storage:
cache:
layerinfo: inmemory
filesystem:
rootdirectory: /var/lib/registry
http:
addr: :5000
- 启动docker-distribution服务
systemctl start docker-distribution
systemctl enable docker-distribution
运维
二、运行容器registry
直接运行docker run
docker run -d -p 5000:5000 -v /data/registry:/var/lib/registry --name registry --r
estart=always registry
Docker安装镜像仓库的三种方法
三、搭建Harbor
image.pngHarbor部署在主机上
部署相关资料地址:Harbor 地址
下载offline部署文件:Harbor offline installer
部署手册:Harbor部署手册
- 安装必要软件
yum install docker-1.12.6 docker-compose -y
- 在 /etc/hosts 添加harbor地址
# /etc/hosts
192.168.2.3 harbor.openshift
- 在 harbor/harbor.cfg 修改hostname
# harbor/harbor.cfg
hostname = harbor.openshift:1080
Harbor默认镜像存储在 /data/
目录下
- 更新Harbor对外服务端口号
# harbor/docker-compose.yml 123行
- 1080:80
- 1443:443
- 4443:4443
# harbor/harbor.cfg
hostname = harbor.openshift:1080
- 启动docker
# 执行之前请确认/var/lib/docker文件夹是否单独挂盘
# 更新 /etc/sysconfig/docker 配置
# 添加
OPTIONS='--selinux-enabled --log-driver=journald --signature-verification=false
--insecure-registry=0.0.0.0/0 --registry-mirror=https://docker.mirrors.ustc.ed
u.cn'
systemctl start docker
- 安装Harbor
./install.sh
- 测试Harbor
docker login harbor.openshift
- 维护Harbor
a. 暂停
docker-compose stop
b. 暂停后重新启动
docker-compose start
c. 更新harbor.cfg后启动
docker-compose down -v
./prepare
docker-compose up -d
d. 删除Harbor
docker-compose down -v
rm -r /data/database
rm -r /data/registry