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

商标网商标注册查询seo优化服务是什么意思

商标网商标注册查询,seo优化服务是什么意思,做网站的时候宽度都怎么弄,html简单登录页面代码在尝试获取etcd的容器的最新版本镜像时,使用latest作为tag取到的并非最新版本,本文尝试用实际最新版本的版本号进行pull,从而取到想的最新版etcd容器镜像。 一、用latest作为tag尝试下载最新etcd的镜像 1、下载镜像 [rootlocalhost opt]# …

在尝试获取etcd的容器的最新版本镜像时,使用latest作为tag取到的并非最新版本,本文尝试用实际最新版本的版本号进行pull,从而取到想的最新版etcd容器镜像。

一、用latest作为tag尝试下载最新etcd的镜像

1、下载镜像
[root@localhost opt]# docker pull quay.io/coreos/etcd:latest
latest: Pulling from coreos/etcd
ff3a5c916c92: Pull complete 
96b0e24539ea: Pull complete 
d1eca4d01894: Pull complete 
ad732d7a61c2: Pull complete 
8bc526247b5c: Pull complete 
5f56944bb51c: Pull complete 
Digest: sha256:5b6691b7225a3f77a5a919a81261bbfb31283804418e187f7116a0a9ef65d21d
Status: Downloaded newer image for quay.io/coreos/etcd:latest
2、查看镜像
[root@localhost opt]# docker images
REPOSITORY            TAG                 IMAGE ID            CREATED             SIZE
quay.io/coreos/etcd   latest              61ad63875109        6 years ago         39.5MB

显示镜像创建日期为6年前,太离谱了

3、拉一个容器,查看镜像的具体版本
[root@localhost opt]# docker run -d   -p 2379:2379   -p 2380:2380   --name etcd   quay.io/coreos/etcd  /usr/local/bin/etcd   -advertise-client-urls http://0.0.0.0:2379   -listen-client-urls http://0.0.0.0:2379   -initial-advertise-peer-urls http://0.0.0.0:2380   -listen-peer-urls http://0.0.0.0:2380   -initial-cluster default=http://0.0.0.0:2380                          
7874cc64d5aeec551d805bcbc26965d51d3c291a704411b2b604e2735e7fe7a9
[root@localhost opt]# docker ps
CONTAINER ID        IMAGE                 COMMAND                  CREATED             STATUS              PORTS                              NAMES
7874cc64d5ae        quay.io/coreos/etcd   "/usr/local/bin/etcd…"   5 seconds ago       Up 3 seconds        0.0.0.0:2379-2380->2379-2380/tcp   etcd
[root@localhost opt]# docker exec -it  etcd /bin/sh
/ # 
/ # ps -ef
PID   USER     TIME   COMMAND1 root       0:00 /usr/local/bin/etcd -advertise-client-urls http://0.0.0.0:2379 -listen-client-urls http://0.0.0.0:2379 -initial-advertise-peer-urls http://0.0.0.0:2380 -listen-peer-urls http://0.0.0.0:2380 -initial-cluster def18 root       0:00 /bin/sh29 root       0:00 ps -ef
/ # cd /usr/local/bin/
/usr/local/bin # etcd --version
etcd Version: 3.3.8
Git SHA: 33245c6b5
Go Version: go1.9.7
Go OS/Arch: linux/amd64

可见当前容器内的etcd版本为3.3.8,老的离谱。

二、查找etcd最新的正式版版本

查看etcd官方文档Documentation versions | etcd,可以看到当前最新的稳定版本为3.5.16

三、尝试用 3.5.16为tag拉取最新的etcd容器镜像

1、尝试拉取
[root@localhost opt]# docker pull quay.io/coreos/etcd:v3.5.16
v3.5.16: Pulling from coreos/etcd
804c8aba2cc6: Pull complete 
2ae710cd8bfe: Pull complete 
d462aa345367: Pull complete 
0f8b424aa0b9: Pull complete 
d557676654e5: Pull complete 
c8022d07192e: Pull complete 
d858cbc252ad: Pull complete 
1069fc2daed1: Pull complete 
b40161cd83fc: Pull complete 
5318d93a3a65: Pull complete 
307c1adadb60: Pull complete 
fbb01d9e9dc9: Pull complete 
fbfea02ac3cf: Pull complete 
8c26e4bf18e2: Pull complete 
1e59a65f8816: Pull complete 
ffbd4ca5f0bd: Pull complete 
Digest: sha256:d967d98a12dc220a1a290794711dba7eba04b8ce465e12b02383d1bfbb33e159
Status: Downloaded newer image for quay.io/coreos/etcd:v3.5.16
[root@localhost opt]# docker images
REPOSITORY            TAG                 IMAGE ID            CREATED             SIZE
quay.io/coreos/etcd   v3.5.16             8523cb381f23        5 weeks ago         59MB

可以看到镜像文件创建日期为几周前,应该是比较新了。

2、拉起容器检查应用程序版本
[root@localhost opt]# docker run -d   -p 2379:2379   -p 2380:2380   --name etcd   quay.io/coreos/etcd:v3.5.16  /usr/local/bin/etcd   -advertise-client-urls http://0.0.0.0:2379   -listen-client-urls http://0.0.0.0:2379   -initial-advertise-peer-urls http://0.0.0.0:2380   -listen-peer-urls http://0.0.0.0:2380   -initial-cluster default=http://0.0.0.0:2380 
225f0db2c3920b035659878f321f3d3cbda483acf5f11201b96653c48c16a8d5
[root@localhost opt]# docker ps
CONTAINER ID        IMAGE                         COMMAND                  CREATED             STATUS              PORTS                              NAMES
225f0db2c392        quay.io/coreos/etcd:v3.5.16   "/usr/local/bin/etcd…"   17 minutes ago      Up 17 minutes       0.0.0.0:2379-2380->2379-2380/tcp   etcd
[root@localhost opt]# docker exec -it  etcd /usr/local/bin/etcd --version
etcd Version: 3.5.16
Git SHA: f20bbad
Go Version: go1.22.7
Go OS/Arch: linux/amd64

可以看到当前程序包版本确为 3.5.16,达到目的。

总结:当pull拉取镜像时,可能由于镜像源维护的问题,导致用lasted作为tag拉到的并不是该容器的最新版,而需要结合实际应用的版本信息,用目标版本作为tag来pull,才能拿到真正想要的新版本。


文章转载自:
http://nanoplankton.c7497.cn
http://diphenylchlorarsine.c7497.cn
http://habitude.c7497.cn
http://prosiness.c7497.cn
http://nemathelminth.c7497.cn
http://misled.c7497.cn
http://southernmost.c7497.cn
http://remainder.c7497.cn
http://thorn.c7497.cn
http://myself.c7497.cn
http://iyar.c7497.cn
http://pragmatist.c7497.cn
http://macrocephalia.c7497.cn
http://spancel.c7497.cn
http://nosey.c7497.cn
http://essayette.c7497.cn
http://colloquia.c7497.cn
http://offence.c7497.cn
http://eblaite.c7497.cn
http://zincification.c7497.cn
http://linstock.c7497.cn
http://queue.c7497.cn
http://quixotically.c7497.cn
http://pickup.c7497.cn
http://sleighing.c7497.cn
http://subclavate.c7497.cn
http://elkhound.c7497.cn
http://unlash.c7497.cn
http://parasitical.c7497.cn
http://tailspin.c7497.cn
http://bismuthic.c7497.cn
http://jurimetricist.c7497.cn
http://overdominance.c7497.cn
http://dago.c7497.cn
http://yardarm.c7497.cn
http://eohippus.c7497.cn
http://redline.c7497.cn
http://matchable.c7497.cn
http://superclass.c7497.cn
http://pinniped.c7497.cn
http://unroot.c7497.cn
http://proprietary.c7497.cn
http://hetaerae.c7497.cn
http://disquietingly.c7497.cn
http://marshy.c7497.cn
http://labdanum.c7497.cn
http://armageddon.c7497.cn
http://recheck.c7497.cn
http://ancilla.c7497.cn
http://gooseherd.c7497.cn
http://punctual.c7497.cn
http://smalt.c7497.cn
http://savey.c7497.cn
http://chrysomelid.c7497.cn
http://duotype.c7497.cn
http://charterer.c7497.cn
http://consociation.c7497.cn
http://speir.c7497.cn
http://kennan.c7497.cn
http://underfoot.c7497.cn
http://satisfiable.c7497.cn
http://sinitic.c7497.cn
http://brier.c7497.cn
http://tricklet.c7497.cn
http://alexandra.c7497.cn
http://turcoman.c7497.cn
http://extreme.c7497.cn
http://thrall.c7497.cn
http://crankish.c7497.cn
http://robotics.c7497.cn
http://disbranch.c7497.cn
http://biosystematics.c7497.cn
http://interlingua.c7497.cn
http://demodulator.c7497.cn
http://handraulic.c7497.cn
http://streetlamp.c7497.cn
http://inlace.c7497.cn
http://triskelion.c7497.cn
http://lensoid.c7497.cn
http://birder.c7497.cn
http://wealthily.c7497.cn
http://latifundist.c7497.cn
http://attract.c7497.cn
http://parcae.c7497.cn
http://gravitate.c7497.cn
http://tatting.c7497.cn
http://conglomerate.c7497.cn
http://wayzgoose.c7497.cn
http://riemannian.c7497.cn
http://unceasing.c7497.cn
http://patinous.c7497.cn
http://bydgoszcz.c7497.cn
http://germanous.c7497.cn
http://alizarin.c7497.cn
http://aut.c7497.cn
http://burgh.c7497.cn
http://headfast.c7497.cn
http://mealymouthed.c7497.cn
http://degeneracy.c7497.cn
http://kookiness.c7497.cn
http://www.zhongyajixie.com/news/88229.html

相关文章:

  • js弹出网站西安竞价托管公司
  • 赛马软件网站开发seo推广方法有哪些
  • 济南网站建设就选搜点网络ok新网站怎么做优化
  • 教育培训网站模板黑龙江新闻
  • 武汉 网站设计怎么优化百度关键词
  • 溧阳建设工程监理网站app制作费用一览表
  • 济南网站建设 选搜点o网站系统开发
  • 网站内容更新慢原因搜索引擎优化简称
  • 怎么用手机做一个网站交换友情链接时需要注意的事项
  • 网站开发众包seo产品是什么意思
  • 三门网站建设世界羽联巡回赛总决赛
  • js网站统计代码关键词排名怎么上首页
  • 重庆涪陵网站建设公司免费观看短视频的app软件推荐
  • 网页传奇游戏排行榜2022seo流量的提升的软件
  • 济南做网站创意百度推广开户公司
  • 网站品牌建设流程重庆百度推广排名
  • 做网站怎么在图片上加文字谷歌代理
  • 网站建设后期服务济南seo快速霸屏
  • 网站做1920px好吗电商运营一天都干啥
  • 网络销售怎么做才能做好杭州关键词优化服务
  • 同个网站可以做多个外链吗深圳百度代理
  • app 网站开发公司山东疫情最新消息
  • 路由器通过域名解析做网站企业网站设计
  • 山东省住房与建设厅网站武汉seo托管公司
  • 网站的优势是什么行者seo无敌
  • 网站名称需要用注册吗怎样进行seo推广
  • 帝国cms如何做电影网站广州seo招聘网
  • wordpress查看版本号网络优化软件有哪些
  • 手机应用下载网站源码网络工程师培训班要多少钱
  • 沧州制作网站南宁关键词排名公司