Docker构建显示加载元数据错误

hyrbngr7  于 2023-10-16  发布在  Docker
关注(0)|答案(2)|浏览(200)

我在Ubuntu 20.04系统上使用Docker。当我试图构建一个docker镜像时,它显示一个错误,如

=> ERROR [internal] load metadata for docker.io/library/ubuntu:trusty
=> [auth] library/ubuntu:pull token for registry-1.docker.io
-------
>[internal] load metadata for docker.io/library/ubuntu:trusty:
----------------------
Dockerfile:1
----------------------
ERROR: failed to solve: ubuntu:trusty: failed to authorize: failed to fetch oauth token: post "https://auth.docker.io/token" : dial tcp: lookup auth.docker.io on 127.0.0.53:53 read udp 192.xxx.xx.xxx:xxxxx->127.0.0.53.53: i/o timeout

直到昨天,建设工作正常。但是今天突然出现了这个错误,构建没有发生。
这里有什么问题吗?

zxlwwiss

zxlwwiss1#

可能某个下载层已损坏。
尝试通过docker system prune --all清理您的环境,然后重试。

zmeyuzjn

zmeyuzjn2#

你试过重启Docker守护进程吗?

sudo service docker restart

重新启动docker daemon并重试。

相关问题