手把手教你搭建Docker私有仓库

本文介绍了Docker私有仓库的搭建与镜像上传方法。先在服务端拉取仓库镜像并运行私有仓库,接着在客户端制作镜像并打标签。上传镜像时因默认https传输报错,需在客户端修改配置,最后可在私有仓库或客户端查看上传的镜像。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Docker客户端:192.168.1.160;Docker私有仓库服务器:192.168.1.161

1.在服务端192.168.1.161上拉取仓库镜像:registry

[root@localhost ~]# docker pull registry

 

2.在服务端192.168.1.161运行docker私有仓库

[root@localhost ~]# docker run -d -v /xxdata/rancher/registry:/var/lib/registry -p 5000:5000 --restart=always --privileged=true --name registry registry:latest

如果成功执行,则表示我们的docker私有仓库搭建成功。

下面对这条命令的部分内容做下说明。

/registry表示宿主机目录,该目录如果不存在会自动创建。

docker -v 宿主机目录:容器目录

在网上看到的解释:

把宿主机的目录挂载到容器中或者把docker 容器中某目录的数据 加载到 宿主机的某个目录

这样做的目的是为了防止docker私有仓库这个容器被删除时,仓库里的镜像也会被删除。

 

3.在客户端制作镜像

以hello-world为例,先把它拉取下来

[root@localhost ~]# docker pull hello-world

给hello-world镜像打个tag,表示新的版本

[root@localhost ~]# docker tag hello-world 192.168.1.161:5000/hello-world:latest

 

4.将新的hello-world镜像上传到私有仓库

[root@localhost ~]# docker push 192.168.1.161:5000/hello-world:latest

发现会报以下错误:

The push refers to a repository [192.168.1.161:5000/hello-world]

Get https://192.168.1.161:5000/v1/_ping: http: server gave HTTP response to HTTPS client

原因是docker私有仓库服务器,默认是基于https传输的,所以我们需要在客户端192.168.1.160做相关设置,不使用https传输

[root@localhost ~]# vi /etc/docker/daemon.json

将下面的代码放进去保存并退出。

"insecure-registries":["192.168.1.161:5000"]

最终如下所示:

{ "registry-mirrors": ["https://njrds9qc.mirror.aliyuncs.com"], "insecure-registries":["192.168.1.161:5000"] }

依次执行下面两条命令,重新启动docker:

[root@localhost ~]# systemctl daemon-reload       (这个可不执行)

[root@localhost ~]# systemctl restart docker

再次执行推送命令:

[root@localhost ~]# docker push 192.168.1.161:5000/hello-world:latest

 

5.在私有仓库192.168.1.161查看上传的镜像

[root@localhost repositories]# ls /registry/docker/registry/v2/repositories

或者在客户端执行以下命令查看:

[root@localhost ~]# curl http://192.168.1.161:5000/v2/_catalog

会输出:

{"repositories":["hello-world"]}

好,大功告成。

参考地址:

https://blog.youkuaiyun.com/mmd0308/article/details/77162004

https://www.cnblogs.com/Javame/p/7389093.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值