Docker仓库搭建(Registry + Portus)
1.更新系统:
yum update -y
2. 安装docker-compos
yum -y install epel-release #pip安装包在epel源中
yum -y install python-pip
pip install -U docker-compose
3.安装git客户端
yum install -y git
4.复制Portus安装程序
git clone https://github.com/SUSE/Portus.git
5.配置Docker安装源
vi /etc/yum.repos.d/docker.repo
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/
enabled=1
gpgcheck=1
gpgkey=
https://yum.dockerproject.org/gpg
6.安装docker引擎并启动
yum cleal all && yum makecache
yum install -y docker-engine
systemctl start docker.service
systemctl enable docker.service
此步如果有保存,请参考下面链接的地址:
http://www.cnblogs.com/amoyzhu/p/5261393.html
7. 安装Portus
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
./compose-setup.sh -e 192.168.0.109 #安装过程中会下载registry、mariadb、rails、ports_web等几个docker镜像 #如果网络不好可以先下载对应的几个docker镜像文件 #然后上传到portus服务器上并用docker load命令加载。 #镜像的具体版本号以实际为准。 REPOSITORY TAG IMAGE ID CREATED SIZE portus_web latest 24a654206d8b 2 days ago 1.086 GB registry 2.3.1 83139345d017 4 months ago 165.8 MB mariadb 10.0.23 93631b528e67 5 months ago 304.6 MB rails 4.2.2 99b347e4bbb4 13 months ago 884.5 MB 安装过后会给出相应的登陆信息和客户端需要的操作样例 ################### # SUCCESS # ################### Make sure port 3000 and 5000 are open on host 192.168.0.109 Open http://192.168.0.109:3000 with your browser and perform the following steps: 1. Create an admin account Perform the following actions on the docker hosts that need to interact with your registry: - Ensure the docker daemon is started with the '--insecure-registry 192.168.0.109:5000' To authenticate against your registry using the docker cli do: $ docker login -u <portus username> -p <password> -e <email> 192.168.0.109:5000 To push an image to the private registry: $ docker pull busybox |
8、打开防火墙端口
| 1 2 3 |
firewall-cmd --zone=public --add-port=3000/tcp --permanent firewall-cmd --zone=public --add-port=5000/tcp --permanent systemctl restart firewall.service |
9. Portus初始化
连接到本docker仓库(也可以是其他仓库,必须是registry 2.0以上版本)
<ignore_js_op>
10、上传镜像测试
修改文件/lib/systemd/system/docker.service中的ExecStart增加--insecure-registry 192.168.0.109:5000并重启docker服务
| 1 2 |
systemctl daemon-reload systemctl restart docker.service |
检查docker服务
| 1 2 |
# ps -ef|grep insecure-registry root 29486 1 0 01:32 ? 00:00:00 /usr/bin/dockerd --insecure-registry 192.168.0.109:5000 |
11. 重启Portus容器:
docker start portus_db_1 portus_web_1 portus_crono_1 portus_registry_1
12.下载busybox镜像并上传到私有的仓库中(安装结束时有操作提示)
docker pull busybox
从docker官网上下载busybox镜像到本地
docker tag busybox 192.168.0.109:5000/admin/busybox
把刚下载的镜像busybox打上tag(重命名):192.168.0.109:5000/admin/busybox
docker login -u admin -p admin123 192.168.0.109:5000
登陆私有的镜像仓库
docker push 192.168.0.109:5000/admin/busybox
把本地的tag为192.168.0.109:5000/admin/busybox上传到私有仓库。
检查Portus界面的镜像信息
13.下载镜像测试
docker pull 192.168.0.109:5000/admin/busybox
Docker仓库搭建(Registry + Portus)的更多相关文章
- Docker 之registry私有仓库搭建
Docker 之registry私有仓库搭建 官方提供的私有仓库docker registry用法 https://yeasy.gitbooks.io/docker_practice/reposito ...
- 6.云原生之Docker容器Registry私有镜像仓库搭建实践
转载自:https://www.bilibili.com/read/cv15219863/?from=readlist #1.下载registry仓库并设置数据存放的目录(并生成认证账号密码) doc ...
- docker简单介绍---部署私有docker仓库Registry
1. 关于Registry 官方的Docker hub是一个用于管理公共镜像的好地方,我们可以在上面找到我们想要的镜像,也可以把我们自己的镜像推送上去.但是,有时候,我们的使用场景需要我们拥有一个私有 ...
- 为docker私有registry配置nginx反向代理
公司的Docker私有registry已经搭建好了,用官方的registry image很容易就搭建好了.现在就是要用nginx的反向代理把它放出来,以便在外网可以访问. 我的上一篇blog 讲了如何 ...
- docker 仓库搭建
阿里云服务器: 127.0.0.1(客户端) 127.0.0.2(私有服务器) 127.0.0.2作为私有仓库使用 1.下载镜像 [root@insure ~]# docker pull regist ...
- 解决: docker pull registry.access.redhat.com/rhel7/pod-infrastructure:latest
直接获取 rpm文件 wget http://mirror.centos.org/centos/7/os/x86_64/Packages/python-rhsm-certificates-1.19.1 ...
- Docker部署Registry私有镜像库
拉取镜像 docker pull registry:2.6.2 生成账号密码文件,这里采用htpasswd方式认证 docker run --rm --entrypoint htpasswd re ...
- docker私服registry管理镜像
前言 首先试想这样一个场景:当在自己的机器上(docker中)构建了mysql镜像,eureka镜像等等微服务镜像,这些镜像有可能需要放到其他的机器上docker环境中去运行,实行分布式架构部署.但如 ...
- docker 私有registry 配置
备注:此处使用linux镜像配置仓库 registry 启动步骤 https://hub.docker.com/_/registry/ docker login docker pull registr ...
随机推荐
- OOP-ECMAScript - 深入理解Javascript
一.面向对象概论 x = {a: 10}; y = {b: 20}; y.Prototype = x z = {c: 30}; z.Prototype = y; z.a; x.a = 100; z.a ...
- c++ swap 函数
转载地址 1,最通用的模板交换函数模式:创建临时对象,调用对象的赋值操作符. template <class T> void swap ( T& a, T& b ) { T ...
- 使用HTML5中的element.dataset操作自定义data-*数据
不久之前我向大家展示了非常有用的classList API,它是一种HTML5里提供的原生的对页面元素的CSS类进行增.删改的接口,完全可以替代jQuery里的那些CSS类操作方法.而另外一个非常有用 ...
- weiapi2.2 HelpPage自动生成接口说明文档和接口测试功能
在开发Webapi项目时每写完一个方法时,是不是需要添加相应的功能说明和测试案例呢?为了更简单方便的写说明接口文档和接口测试HelpPage提供了一个方便的途径. 她的大致原理是:在编译时会生成.dl ...
- objc swift 混编
原链接:http://blog.csdn.net/xuanwenchao/article/details/30226823 在xocde6出来我们大部分代码都是用objective-c写的(部分C/C ...
- secure CRT记住密码不可用
secure CRT 记住密码,琢磨好几天了. 终于发现要在软件打开的时候设置了密码才能让每个会话记住密码. 一直懒得在打开软件的时候设置密码,结果每次打开会话都要输入密码...为了省下输入一次密码, ...
- PHPStorm+PHP5.6+WIN7+IIS7
文件下载 以下为参考网址,如无法打开或变动,请自行搜索,获取最新版本文件请行搜索 PHP Manager:http://www.iis.net/downloads/community/2010/09/ ...
- json 处理
//String sssssString = "{"response":{"data":[{"address":"南京市 ...
- React Native 简介:用 JavaScript 搭建 iOS 应用(2)
[编者按]本篇文章的作者是 Joyce Echessa--渥合数位服务创办人,毕业于台湾大学,近年来专注于协助客户进行 App 软体以及网站开发.本篇文章中,作者介绍通过 React Native 框 ...
- HDU1724 Ellipse(数值积分)
补一下一些小盲区,譬如simpson这种数值积分的方法虽然一直知道,但是从未实现过,做一道例题存一个模板. #pragma warning(disable:4996) #include<iost ...