Ubuntu构建Docker私有仓库(Repository) 配置过程笔记

时间:2021-08-22 23:53:43
一、准备:
1、服务器(或者虚拟机2台,我的服务环境【  阿里云服务器-Ubuntu 1804 +百度云-Ubuntu 1604】)
2、有效镜像(我这里以上一篇随笔镜像作为有效镜像https://www.cnblogs.com/billowliu/p/12650361.html
3、官网仓库镜像(https://hub.docker.com,打开官网超级慢~官方源镜像下载也慢)
4、daemon.json(主要配置Docker push 、Pull  镜像源地址)
二、目标:
1、如何构建私有仓库
2、如何将镜像上传到私有仓库
3、如何下载私有仓库镜像
三、实现步骤
Ⅰ 、准备有效镜像
    用上一篇文章中所用的BillAspNetCoreDocker做范例, 这里先查看一下有哪些镜像,并可以通过 inspeect  镜像查看详细信息
docker images
docker image inspect billcore
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
这里记录下Tag,目前我理解的应该是版本信息(下面命令相当于Copy并指定Tag信息-推送镜像到私有仓库时准备的)
docker  image tag  billcore  billcore:bill
docker images
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
 通过billcore镜像创建容器并后台运行(-d后台 -P 暴露端口-否则外网可能无法访问)
docker run -d -P billcore 
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
现在就可以通过浏览器通过域名或者IP访问端口为32769,如下图所示可以正常运行。
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
到这里镜像确保没有问题且能正常在容器中运行
现在重点是记录Docker private Repository 内容,为下一步集群搭建做准备
Ⅱ、官网仓库镜像
下载官方仓库镜像可能比较慢,国内的镜像源还蛮快的(https://hub.docker.com),相关说明文档:https://docs.docker.com/docker-hub/official_images/
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
命令格式
docker pull [OPTIONS] NAME[:TAG|@DIGEST]
注:对于Docker镜像来说,如果不显式地指定TAG,则默认会选择 latest标签,即下载仓库中最新版本的镜像。
docker pull registry
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
再次查看镜像确认已经安装完成
docker images
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
运行registry -后台运行(守护)暴露服务器与容器端口均为5000 容器名称定义为 registry
docker run -d -P :  --name registry  registry
出现下面图提示,应该是国外源下载速度太慢,设置 daemon.json设置国内
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
cd /etc/docker
ls
vi /etc/docker/daemon.json
出现编辑界面添加如下其中一条内容即可(多条仅供参考):
网易:{"registry-mirrors": ["http://hub-mirror.c.163.com"]}
阿里:{"registry-mirrors": ["https://help.aliyun.com/document_detail/60750.html"]}
国内:{"registry-mirrors": ["https://registry.docker-cn.com"]}
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
再次执行,如下所所示成功了
docker run -d -P :  --name registry  registry
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
再次查看容器,
docker ps -a
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
至此仓库已经搭建完成,下一步就是往仓库中推送镜像,提供给其他服务器使用
docker images 
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
现在得目标是将billcore 的镜像推送至私有仓库
docker image tag billcore  xx.xxx.141.79:/billcore
docker images
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
通过 push命令推送
docker push  xx.xxx.141.79:/billcore
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
解决办法
echo '{ "insecure-registries":["xxx.xxx.141.79:5000"] }' > /etc/docker/daemon.json
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
 重启Dokcer服务,继续推送
systemctl restart docker
docker push xx.xxx.141.79:/billcore
然后还是出现如下报错,仔细检查原来重启dokcer后容器也跟着停止了,
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
   解决问题,启动容器:7358409c6e4a 对应 registry
docker start 7358409c6e4a
docker ps -a
   从下图看出docker私有仓库容器已经重新运行成功
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
继续推送,可以看到正在向私有仓库进行推送billcore,如果是本机会更快,
因为我待会得用百度服务器下载阿里云服务器 私有仓库的镜像所以我用的公网IP有点慢
docker push  xx.xxx.141.79:/billcore
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
推送完成后
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
推送完成后查看
curl xx.xxx.141.79:/v2/_catalog
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
现在私有仓库中有存在一个billcore 的项目
现在切换到另外一台服务准备下载镜像
1、设置daemon.json
 echo '{ "insecure-registries":["47.105.141.79:5000"] }' > /etc/docker/daemon.json 
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
重启Docker 服务(这里建议一开始就设置好私有仓库地址,后续统一将镜像在私有仓库中管理不然每次都得重启服务)
service docker restart
下载镜像billcore、部署镜像、并访问网站
docker pull xx.xxx.141.79:/billcore
docker images
docker run -d -P xx.xxx.141.79:/billcore
docker ps -a
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
Ubuntu构建Docker私有仓库(Repository) 配置过程笔记Ubuntu构建Docker私有仓库(Repository) 配置过程笔记
至此私有镜像源服务器(阿里)已经搭建完成,并且在百度云服务器中下载镜像进行部署~
本文记录均为个人操作步骤笔记(含踩坑过程),仅供参考~