温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎样搭建本地docker repo?

发布时间:2020-05-23 16:49:58 来源:亿速云 阅读:546 作者:鸽子 栏目:云计算

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

怎样搭建本地docker repo?

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

#download registry image

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

秒下成功

怎样搭建本地docker repo?

#download hello-world image

docker pull hello-world

#下好了

docker ps -a

怎样搭建本地docker repo?

#tag & push image to local repostory

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

怎样搭建本地docker repo?

docker push localhost:5000/hello-world

怎样搭建本地docker repo?

#进目录看看image

docker exec -it register /bin/sh

怎样搭建本地docker repo?

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

怎样搭建本地docker repo?

#remove docker image

docker rmi hello-world

怎样搭建本地docker repo?

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

docker pull localhost:5000/hello-world

docker images

怎样搭建本地docker repo?

找到一个docker repo的web ui

https://hub.docker.com/r/konradkleine/docker-registry-frontend

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 repo?

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

怎样搭建本地docker repo?

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

怎样搭建本地docker repo?

怎样搭建本地docker repo?

found the hello world image

怎样搭建本地docker repo?

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

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

怎样搭建本地docker repo?

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

怎样搭建本地docker repo?

refresh repo web ui

怎样搭建本地docker repo?

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI