本文主要记录 docker 使用过程中遇到的网络问题主要涉及镜像拉取慢,容器打包或者容器内访问网络资源超时等问题

 title=

解决镜像加速

主要解决 docker 拉取第三方镜像速度慢,拉取失败问题。

"registry-mirrors": [
   "https://dockerpull.pw",
   "https://dockerhub.icu",
   "https://hub.rat.dev",
   "https://register.librax.org",
   "https://docker-0.unsee.tech",
   "https://docker-cf.registry.cyou"
 ],

解决网络资源超时

主要解决 docker 容器打包或容器内访问部分远程网络资源超时等问题。

"dns": [
   "8.8.8.8",
   "8.8.4.4"
 ]

完整配置

{
  "registry-mirrors": [
    "https://dockerpull.pw",
    "https://dockerhub.icu",
    "https://hub.rat.dev",
    "https://register.librax.org",
    "https://docker-0.unsee.tech",
    "https://docker-cf.registry.cyou"
  ],
  "dns": [
    "8.8.8.8",
    "8.8.4.4"
  ]
}