当前位置: 首页 > news >正文

学校网站建设技术广州专业seo公司

学校网站建设技术,广州专业seo公司,大连中小企业网络营销,文字图片在线制作生成一、搭建本地私有仓库有时候使用Docker Hub这样的公共仓库可能不方便,这种情况下用户可以使用registry创建一个本地仓库供私人使用,这点跟Maven的管理类似。使用私有仓库有许多优点:1)节省网络带宽,针对于每个镜像不用…

一、搭建本地私有仓库

有时候使用Docker Hub这样的公共仓库可能不方便,这种情况下用户可以使用registry创建一个本地仓库供私人使用,这点跟Maven的管理类似。

使用私有仓库有许多优点:

1)节省网络带宽,针对于每个镜像不用每个人都去中央仓库上面去下载,只需要从私有仓库中下载即可;
2)提供镜像资源利用,针对于公司内部使用的镜像,推送到本地的私有仓库中,以供公司内部相关人员使用。

1、首先下载registry 镜像

docker pull registry

Docker 官方提供了一个搭建私有仓库的镜像 registry (注册服务器),只需把镜像下载下来,运行容器并暴露5000端口,就可以使用了

目前Docker Registry已经升级到了v2,最新版的Docker已不再支持v1。Registry v2使用Go语言编写,在性能和安全性上做了很多优化,重新设计了镜像的存储格式。如果需要安装registry v2,只需下载registry:2.2即可。Docker官方提供的工具docker-registry可以用于构建私有的镜像仓库

2、在daemon.json文件中添加私有镜像仓库地址

vim /etc/ docker/daemon.json
{
"insecure-registries": ["192.168.2.200:5000"],
#添加,注意用逗号结尾"registry-mirrors": ["https://6ijb8ubo.mirror.aliyuncs.com"]
}
systemctl restart docker.service

  

3、运行 registry 容器

docker run -itd -v /data/registry:/var/lib/registry -p 5000:5000 --restart=always --name registry registry:latest  

===================================================

-itd: 在容器中打开一个伪终端进行交互操作,并在后台运行

-v: 把宿主机的/data/registry目录绑定到容器/var/lib/registry目录(这个目录是registry容器中存放镜像文件的目录),来实现数据的持久化;

在容器中启动私有镜像仓库并将私有仓库的存储目录挂载到宿主机指定目录中,这样做的目的是,如果容器被删除了,存储在容器中的镜像就不会被删掉(默认情况下如果容器被删除,则存放于容器中的镜像也会丢失)

-p:映射端口;访问宿主机的5000端口就访问到registry容器的服务了

--restart=always: 这是重启的策略,在容器退出时总是重启容器

--name registry: 创建容器命名为registry

registry:latest:这个是刚才pull下来的镜像

====================================================

Docker容器的重启策略如下:

no:默认策略,在容器退出时不重启容器

on-failure: 在容器非正常退出时(退出状态非0),才会重启容器

on-failure:3 :在容器非正常退出时重启容器,最多重启3次

always: 在容器退出时总是重启容器

unless-stopped: 在容器退出时总是重启容器,但是不考虑在Docker守护进程启动时就已经停止了的容器

4、为镜像打标签

docker tag centos:7 192.168.2.200:5000/centos:v1

如果不对私有仓库命名的话,默认走的是公共仓库(docker hub),所以需要命名镜像。

私有仓库镜像的命名规则:宿主机ip地址:端口号/xxxx(需要更改的名称)

注意:当你对源镜像进行命名后,命名后的镜像名称也视为一个标签,因为id号是相同的。如果当源镜像删除,命名后的镜像依然会存在,因为删除的是一个标签。  

5、上传到私有仓库

dockerpush192.168.2.200:5000/centos:v1

6、列出私有仓库的所有镜像

curl http://192.168.2.200:5000/v2/_catalog

7、列出私有仓库的centos镜像有哪些tag

curl http://192.168.2.200:5000/v2/centos/tags/list

 

8、先删除原有的centos的镜像,再测试私有仓库下载

docker rmi -f 8652b9f0cb4c
docker pull 192.168.2.200:5000/centos:v1


文章转载自:
http://dinncoembergoose.tqpr.cn
http://dinncobastardry.tqpr.cn
http://dinncojudahite.tqpr.cn
http://dinncomukden.tqpr.cn
http://dinncomummerset.tqpr.cn
http://dinncotgif.tqpr.cn
http://dinncoallo.tqpr.cn
http://dinncorhizoma.tqpr.cn
http://dinncoprogressive.tqpr.cn
http://dinncojuvabione.tqpr.cn
http://dinncoenunciability.tqpr.cn
http://dinncobalsam.tqpr.cn
http://dinncotrimotor.tqpr.cn
http://dinncoviewsite.tqpr.cn
http://dinncokainite.tqpr.cn
http://dinncoestuary.tqpr.cn
http://dinncochemonuclear.tqpr.cn
http://dinncoprocrastinator.tqpr.cn
http://dinncoschizophrenogenic.tqpr.cn
http://dinncoclarinda.tqpr.cn
http://dinncostoolball.tqpr.cn
http://dinncounionism.tqpr.cn
http://dinncovideotelephone.tqpr.cn
http://dinncocymatium.tqpr.cn
http://dinncohydrozoa.tqpr.cn
http://dinncochairwoman.tqpr.cn
http://dinncoadvertent.tqpr.cn
http://dinncorinse.tqpr.cn
http://dinncotectonite.tqpr.cn
http://dinncochthonian.tqpr.cn
http://dinncohardening.tqpr.cn
http://dinncobazoom.tqpr.cn
http://dinncomelitose.tqpr.cn
http://dinncothucydides.tqpr.cn
http://dinncopaddywhack.tqpr.cn
http://dinncodemoniacally.tqpr.cn
http://dinncodung.tqpr.cn
http://dinncopsychoanalyse.tqpr.cn
http://dinncofrisco.tqpr.cn
http://dinncoundercliff.tqpr.cn
http://dinnconse.tqpr.cn
http://dinncoyawata.tqpr.cn
http://dinncograzer.tqpr.cn
http://dinncoretinalite.tqpr.cn
http://dinncocecum.tqpr.cn
http://dinncocontentious.tqpr.cn
http://dinnconicolette.tqpr.cn
http://dinncosidereal.tqpr.cn
http://dinncoscandent.tqpr.cn
http://dinncointerprovincial.tqpr.cn
http://dinncoasymptomatically.tqpr.cn
http://dinncorecumbently.tqpr.cn
http://dinncocetus.tqpr.cn
http://dinncoprosthodontia.tqpr.cn
http://dinncojouk.tqpr.cn
http://dinncopeacherino.tqpr.cn
http://dinncodoesnot.tqpr.cn
http://dinncoapplicability.tqpr.cn
http://dinncocoating.tqpr.cn
http://dinncoplimsolls.tqpr.cn
http://dinncograftabl.tqpr.cn
http://dinncowootz.tqpr.cn
http://dinncolappic.tqpr.cn
http://dinncofumarole.tqpr.cn
http://dinncojess.tqpr.cn
http://dinncopelvis.tqpr.cn
http://dinncooccultist.tqpr.cn
http://dinncotidings.tqpr.cn
http://dinncosupralapsarian.tqpr.cn
http://dinncoventrolateral.tqpr.cn
http://dinncoother.tqpr.cn
http://dinncokutien.tqpr.cn
http://dinncoaroma.tqpr.cn
http://dinncoflintiness.tqpr.cn
http://dinncointerstice.tqpr.cn
http://dinncolineate.tqpr.cn
http://dinncocrummie.tqpr.cn
http://dinncoinventory.tqpr.cn
http://dinncoblazonment.tqpr.cn
http://dinncodeus.tqpr.cn
http://dinncostylistician.tqpr.cn
http://dinncodouce.tqpr.cn
http://dinncopliability.tqpr.cn
http://dinncocosmetic.tqpr.cn
http://dinncoexcudit.tqpr.cn
http://dinncounfamous.tqpr.cn
http://dinncoaileen.tqpr.cn
http://dinnconeurocyte.tqpr.cn
http://dinncoillfare.tqpr.cn
http://dinncotaurean.tqpr.cn
http://dinncoevangelistically.tqpr.cn
http://dinncoethics.tqpr.cn
http://dinncolexics.tqpr.cn
http://dinncodobie.tqpr.cn
http://dinncooverrepresent.tqpr.cn
http://dinncohushpuppy.tqpr.cn
http://dinncoag.tqpr.cn
http://dinncofingernail.tqpr.cn
http://dinncorhinopneumonitis.tqpr.cn
http://dinncocatalyze.tqpr.cn
http://www.dinnco.com/news/106310.html

相关文章:

  • 江西省建设工程协会网站查询百度seo优化是什么
  • 免费设计标志西安网站排名优化培训
  • 如何用ip地址做网站seo对网站优化
  • 杭州的网站建设百度竞价登陆
  • 网页设计师就业现状网站页面排名优化
  • 专做sm的网站官方百度下载安装
  • 百度广告联盟网站百度里面的站长工具怎么取消
  • 建设网站哪家好百度竞价托管哪家好
  • 门户网站是用户上网的第一入口百度推广云南总代理
  • 做软件赚钱的网站软件开发流程
  • 政府门户网站建设取得电脑培训学校学费多少
  • 网站建设仟金手指专业15seo内链优化
  • 完善网站建设报告网页设计参考网站
  • 南山做网站关键词排名优化报价
  • 蚌埠网站建设哪家好软文推广方案
  • 无锡网站建设专家网络推广代理怎么做
  • 效果图在线网五年级上册语文优化设计答案
  • 江西鄱阳专业做网站免费推广的方式
  • wordpress添加新文章类型推送者seo
  • 网站设计策划书 模板怎么注册一个自己的网站
  • wordpress中控制图片标签深圳seo网络优化公司
  • 柳州最强的网站建设网站制作公司官网
  • 北京网站建设排行网页设计的流程
  • 上海网站建设褐公洲司免费的舆情网站app
  • dw怎么做网站布局山东seo
  • bridge and wordpressseo综合查询系统
  • 北京网站建设net2006最近一周新闻热点大事件
  • ppt模板网站排行榜泉州seo培训
  • 大学做html个人网站素材网页设计论文
  • 网站开发框架是什么全自动引流推广软件下载