解决办法:

# 配置多个host(配置本地域名映射)
[root@vm10-11-0-38 ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

10.111.99.78 rds.harbor.ksyun.com rds.registry.ksyun.com

配置docker配置(由于配置的https拿http访问不到,配置80端口)

cat /etc/docker/daemon.json
{
"registry-mirrors": ["http://rds.harbor.ksyun.com"],

"insecure-registries": ["10.111.99.78:80","rds.harbor.ksyun.com","rds.harbor.ksyun.com:80","rds.registry.ksyun.com"]
}

相关文章:

  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2022-02-14
  • 2021-10-20
  • 2021-07-10
猜你喜欢
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
  • 2022-01-05
  • 2021-12-01
  • 2021-11-20
  • 2021-08-25
相关资源
相似解决方案