当前位置:   article > 正文

docker 快速搭建私有镜像仓库registry以及registryUI_docker registry ui

docker registry ui

目录

一、前提

二、搭建步骤

三、上传镜像


一、前提

1、docker环境(docker for window为例)

2、基本命令

  1. docker images #查看镜像
  2. docker pull [仓库ip:port/]镜像:tag #拉取镜像
  3. docker push [仓库ip:port/]镜像:tag #上传镜像
  4. docker rmi 镜像:tag #删除镜像
  5. docker tag 镜像名 镜像名:tag #重命名镜像
  6. docker run 镜像:tag #运行镜像
  7. docker ps -a #docker 进程

二、搭建步骤

1、安装registry

step1:拉取registry

docker pull registry
docker images

step2:运行registry 

docker run -d -p 5000:5000 --name registry registry
docker ps -a

curl http://127.0.0.1:5000/v2/

 2、安装registry-web

step1:拉取registry-web

docker pull hyper/docker-registry-web
docker images

 

step2:运行registry-web

docker run -d -p 5001:8080 --name registry-web --link registry -e REGISTRY_URL=http://registry:5000/v2 -e REGISTRY_NAME=localhost:5000 hyper/docker-registry-web

 

  1. ##命令注释
  2. docker run ##运行
  3. -d ##后台运行
  4. -p 5001:8080 ##端口映射
  5. --name registry-web ##容器命名
  6. --link registry ##连接其他容器 加入registry到host
  7. -e REGISTRY_URL=http://registry:5000/v2 ##指定仓库地址
  8. -e REGISTRY_NAME=localhost:5000 ##仓库命名
  9. hyper/docker-registry-web ##被启动的镜像
docker ps -a

curl http://127.0.0.1:5001

三、上传镜像

  1、配置仓库(docker for window)

step1:docker for windows -》setting-》daemon-》添加insecure-registries-》[可选]registry mirrors

step2:重启服务 

  1. docker start registry
  2. docker start registry-web

 2、上传镜像

step1:下载测镜像并重命名

docker pull hello-world
docker tag hello-world localhost:5000/zyj-test:1.0
  1. ##注意命名规范
  2. 镜像仓库ip:port/镜像名:tag
  3. ##否则push出错
  4. Error response from daemon: manifest for localhost:5000/uifd/ui-for-docker:latest not found

 

step2:上传镜像 

docker pull localhost:5000/zyj/test:1.0

 

  1. 浏览器输入:
  2. http://localhost:5001/

3、下载镜像

step1:删除本地已有镜像

docker rmi localhost:5000/zyj/test:1.0

step2:拉取本地仓库镜像 

docker pull localhost:5000/zyj/test:1.0

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/471064
推荐阅读
相关标签
  

闽ICP备14008679号