资讯详情

搭建docker镜像仓库

拉镜像仓库镜像

docker pull registry 

启动镜像仓库

docker run -d -p 5000:5000 --restart=always --name registry registry 

官方的 registry 镜像启动私人仓库。默认情况下,仓库将在容器中创建 /var/lib/registry 目录下。你可以通过 -v 参数将镜像文件存储在当地的指定路径中。例如,下面的例子将上传的镜像放置在当地 /opt/data/registry 目录

$ docker run -d \     -p 5000:5000 \     -v /opt/data/registry:/var/lib/registry \     registry 

上传、搜索、下载私人仓库

创建私人仓库后,即可使用```docker tag标记镜像,然后把它推到仓库。例如,私人仓库的地址是127.0.0.1:5000` 首先在当地查看现有的镜像

$ docker image ls REPOSITORY                        TAG                 IMAGE ID            CREATED             VIRTUAL SIZE ubuntu                            latest              ba5877dc9bec        6 weeks ago         192.7 MB 

使用 docker tagubuntu:latest 这个镜像标记为 127.0.0.1:5000/ubuntu:latest。 格式为 docker tag IMAGE[:TAG] [REGISTRY_HOST[:REGISTRY_PORT]/]REPOSITORY[:TAG]

$ docker tag ubuntu:latest 127.0.0.1:5000/ubuntu:latest $ docker image ls REPOSITORY                        TAG                 IMAGE ID            CREATED             VIRTUAL SIZE ubuntu                            latest              ba5877dc9bec        6 weeks ago         192.7 MB 127.0.0.1:5000/ubuntu:latest      latest              ba5877dc9bec        6 weeks ago         192.7 MB 

使用 docker push 上传标记的镜像

$ docker push 127.0.0.1:5000/ubuntu:latest The push refers to repository [127.0.0.1:5000/ubuntu] 373a30c24545: Pushed a9148f5200b0: Pushed cdd3de0940ab: Pushed fc56279bbb33: Pushed b38367233d37: Pushed 2aebd096e0e2: Pushed latest: digest: sha256:fe4277621f10b5026266932ddf760f5a756d2facd505a94d2da12f4f52f71f5a size: 1568 

curl在仓库里检查镜像

$ curl 127.0.0.1:5000/v2/_catalog { 
        "repositories":["ubuntu"]} 

这里可见 {"repositories":["ubuntu"]},显示镜像已成功上传。 先删除现有的镜像,然后试着从私人仓库下载这个镜像

$ docker image rm 127.0.0.1:5000/ubuntu:latest  $ docker pull 127.0.0.1:5000/ubuntu:latest Pulling repository 127.0.0.1:5000/ubuntu:latest ba5877dc9bec: Download complete 511136ea3c5a: Download complete 9bad880da3d2: Download complete 25f11f5fb0cb: Download complete ebc34468f71d: Download complete 2318d26665ef: Download complete  $ docker image ls REPOSITORY                         TAG                 IMAGE ID            CREATED             VIRTUAL SIZE 127.0.0.1:5000/ubuntu:latest       latest              ba5877dc9bec        6 weeks ago         192.7 B

配置非https仓库地址

如果你不想使用 127.0.0.1:5000 作为仓库地址,比如想让本网段的其他主机也能把镜像推送到私有仓库。你就得把例如 192.168.199.100:5000 这样的内网地址作为私有仓库地址,这时你会发现无法成功推送镜像。 这是因为 Docker 默认不允许非 HTTPS 方式推送镜像。我们可以通过 Docker 的配置选项来取消这个限制

{ 
        
  "registry-mirror": [
    "https://hub-mirror.c.163.com",
    "https://mirror.baidubce.com"
  ],
  "insecure-registries": [
    "192.168.199.100:5000"
  ]
}

私有仓库高级配置

https://yeasy.gitbook.io/docker_practice/repository/registry_auth

k8s搭建私有仓库

使用这个helm https://github.com/lhzzz/charts/tree/master/stable/docker-registry

  • 装之前记得修改这里的host为自己的域名

在这里插入图片描述

helm install docker-registry -n registry .
  • 然后修改/etc/hosts,加上这个域名registry.sakura.com
  • 然后在修改/etc/docker/daemon.json,加入如下这行

标签: 二极管pk25f

锐单商城拥有海量元器件数据手册IC替代型号,打造 电子元器件IC百科大全!

锐单商城 - 一站式电子元器件采购平台