当前位置:首页 » 《关于电脑》 » 正文

docker 异常: failed to fetch oauth token: Post “https://auth.docker.io/token“: dial tcp 148.163.48.

26 人参与  2024年10月17日 16:00  分类 : 《关于电脑》  评论

点击全文阅读


docker 异常: failed to fetch oauth token: Post “https://auth.docker.io/token”: dial tcp 148.163.48.215:443: i/o timeout

报错信息

ERROR: failed to solve: python:3.9-slim: failed to resolve source metadata for docker.io/library/python:3.9-slim: failed to authorize: failed to fetch oauth token: Post "https://auth.docker.io/token": dial tcp 148.163.48.215:443: i/o timeout

原因

网络问题:由于一些众所周知的原因,在墙内是上不了外网的,然后前段时间还把国内docker的镜像站都给关了。所以你需要配置代理,但是,可能会存在你已经打开了全局代理,还是没法下载镜像。

解决

我的是macos,所以直接在 bash 中添加环境变量,操作如下:vim ~/.bash_profile  # 添加以下内容  export https_proxy=http://127.0.0.1:7890  export http_proxy=http://127.0.0.1:7890source ~/.bash_profile  docker build --platform linux/amd64 -t fastapi-hello .# 成功

点击全文阅读


本文链接:http://zhangshiyu.com/post/173210.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1