docker 配置檔案

全琪俊發表於2024-12-03

、解決方案

(1)檢視DNS客戶機的配置檔案

1
cat /etc/resolv.conf

發現我的nameserver 是 8.8.8.8了,說明我的DNS出了問題

需要新增DNS:nameserver 114.114.114.114

(2)修改配置檔案

1
vim /etc/resolv.conf

修改後如下

第一步:編輯 Docker 配置檔案
  1. 開啟 Docker 的配置檔案 daemon.json。該檔案通常位於:
    • Linux 系統:/etc/docker/daemon.json
    • Windows 系統:C:\\ProgramData\\docker\\config\\daemon.json
    • macOS 系統:~/Library/Containers/com.docker.docker/Data/docker-daemon.json
  2. 如果該檔案不存在,您可以手動建立一個新的 daemon.json 檔案。
第二步:新增映象加速器配置

daemon.json 檔案中,新增以下內容:

{
"registry-mirrors": [
"https://docker.1ms.run",
"https://d33tpfpz.mirror.aliyuncs.com",
"https://docker.hpcloud.cloud",
"https://docker.m.daocloud.io",
"https://docker.unsee.tech",
"https://docker.1panel.live",
"http://mirrors.ustc.edu.cn",
"https://docker.chenby.cn",
"http://mirror.azure.cn",
"https://dockerpull.org",
"https://dockerhub.icu",
"https://hub.rat.dev"
],
"log-driver": "json-file",
"log-opts": {
"max-size": "2g",
"max-file": "5"
},
"data-root": "/mnt/www/docker",
"dns": [
"223.5.5.5",
"114.114.114.114",
"114.114.114.114",
"8.8.8.8",
"8.8.4.4"
]
}

相關文章