搭建本地docker repo

网友投稿 277 2022-10-29

搭建本地docker repo

dockerhub 搜索registry

官网文档

deploy registry server

你可以自己get.docker.com 下一个,但是中国的网络安装至少需要若干小时,所以老子选择

用docker 的id 登录,然后可以获取4小时的虚拟机,对于实验来说足够了

来来来,下一个repo 托管容器

#download registry image

docker run -d -p 5000:5000 --restart always --name register registry:2

秒下成功

#download hello-world image

docker pull hello-world

#下好了

docker ps -a

#tag & push image to local repostory

docker tag hello-world localhost:5000/hello-world

docker push localhost:5000/hello-world

#进目录看看image

docker exec -it register /bin/sh

goto /var/lib/registry/ , you can found all the images

#remove docker image

docker rmi hello-world

#download images from local repo 我感觉就是吃饱了撑的

docker pull localhost:5000/hello-world

docker images

找到一个docker repo的web ui

docker run \

-d \

-e ENV_DOCKER_REGISTRY_HOST=registry \

-e ENV_DOCKER_REGISTRY_PORT=5000 \

-p 8080:80 \

--link register:registry \

konradkleine/docker-registry-frontend:v2

#请注意register为local repo,registry为web ui

#眼睛一闭开始下载

#docker rmi konradkleine/docker-registry-frontend:v2

到界面找mapping出来的端口,8080是docker repo的web ui,5000是repo的端口

found the hello world image

#tag & push a new image 更新了v2到v3

docker tag konradkleine/docker-registry-frontend:v2 localhost:5000/konradkleine/docker-registry-frontend:v3

docker push localhost:5000/konradkleine/docker-registry-frontend:v3

refresh repo web ui

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:TensorRT的C++接口解析
下一篇:Docker搭建LNMP网站平台实战
相关文章

 发表评论

暂时没有评论,来抢沙发吧~