Harbor镜像的Push和Pull

Posted 处静息迹

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Harbor镜像的Push和Pull相关的知识,希望对你有一定的参考价值。

1.从公网中拉取镜像

docker pull nacos/nacos-server

2.查看docker信息 (配置文件路径)

systemctl status docker

3.编辑dock 配置文件

centos7直接拉取镜像可能会报错:

Error response from daemon: Get https://10.34.252.90/v2/: x509: certificate signed by unknown authority

修改配置文件后可以解决上述问题

vim /usr/lib/systemd/system/docker.service接下来我们需要去编辑docker.service文件,并进行一些修改,ExecStart,添加--insecure-registry=101.134.22.90

4.重启服务:

systemctl daemon-reload
systemctl restart docker

5.登录Harbor

docker login 10.34.252.90

6.标记镜像

docker tag nacos/nacos-server:latest 10.34.252.90/library/nacos/nacos-2.0.3

​​​​​​​​​​​​​​​​​​​​​​​​​​​​

 

7.上传镜像

docker push 10.34.252.90/nacos/nacos-2.0.3:latest

8.拉取镜像

1)编辑配置文件

centos7直接拉取镜像可能会报错:

Error response from daemon: Get https://10.34.252.90/v2/: x509: certificate signed by unknown authority

修改配置文件后可以解决上述问题

vim /usr/lib/systemd/system/docker.service

接下来我们需要去编辑docker.service文件,并进行一些修改,ExecStart,添加--insecure-registry=10.34.252.90

2)拉取镜像

根据Karbor 中提示的镜像 地址 拉取镜像

docker pull 10.34.252.90/nacos/nacos-2.0.3:latest

​​​​​​​

 

以上是关于Harbor镜像的Push和Pull的主要内容,如果未能解决你的问题,请参考以下文章

Harbor镜像的Push和Pull

docker从私有镜像库pull/push镜像问题:Error response from daemon: Get https://harbor.op.xxxx.com/v2/: x509: cert

Karbor镜像的Push和Pull

docker仓库使用+harbor私有仓库部署

Linux运维容器篇 docker私有仓库harbor生产搭建

Linux运维容器篇 docker私有仓库harbor生产搭建