# 检查 DNS 配置

修改 /etc/resolv.conf ,添加下面内容

1
2
nameserver 8.8.4.4
nameserver 8.8.8.8

# 配置代理

科学上网,我使用的 clash,其监听的端口为 7890,修改 http 和 https 代理

1
2
3
4
5
6
7
8
# 临时修改,在命令行中添加如下内容
echo HTTP_PROXY=http://127.0.0.1:7890 # clash代理端口
echo HTTPS_PROXY=http://127.0.0.1:7890
# 配置socks5
export ALL_PROXY=socks5://127.0.0.1:7891

# 测试代理能否访问docker源
curl -x http://127.0.0.1:7890 https://registry-1.docker.io/v2

# 替换镜像源

由于国内政策影响,目前大部分镜像源处于不可用状态,自行寻找合适镜像源

1
sudo vi /etc/docker/daemon.json

添加下面内容,只做示例。目前两个镜像均无法使用

1
2
3
4
5
6
{
"registry-mirrors": [
"https://hub-mirror.c.163.com",
"https://mirror.baidubce.com"
]
}

重启 docker 服务

1
2
sudo systemctl daemon-reload
sudo systemctl restart

# 手动拉取镜像

在能访问 dockhub 的电脑中拉取镜像

  1. dockerhub 网站搜索镜像 https://hub.docker.com/,例如 ubuntu:latest

  2. 手动拉取

    1
    docker pull ubuntu:latest
  3. 保存镜像为.tar 文件

    1
    docker save -o ubuntu_latest.tar ubuntu:latest
  4. 将.tar 文件上传服务器

    1
    scp ubuntu_latest.tar user@your_server_ip:/path/to/destination
  5. 服务器中加载镜像

    1
    docker load -i /path/to/destination/ubuntu_latest.tar

TODO

这几个方法目前并不能完全解决这个问题,持续记录新的解决方法

更新于 阅读次数

请我喝[茶]~( ̄▽ ̄)~*

chaihj15 微信支付

微信支付

chaihj15 支付宝

支付宝