gpt4 book ai didi

ubuntu - "$ docker build -t docker-whale ."抛出一个错误,说 "Some index files failed to download. They have been ignored or old ones used instead."

转载 作者:行者123 更新时间:2023-12-04 19:01:38 26 4
gpt4 key购买 nike

我是 Docker 新手,我正在尝试遵循 Docker 提供的官方文档。当我尝试构建自己的图像时,如下所示“https://docs.docker.com/engine/getstarted/step_four/

我收到错误消息

W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty-updates/main/binary-amd64/Packages Hash Sum mismatch

E: Some index files failed to download. They have been ignored, or old ones used instead. The command '/bin/sh -c apt-get -y update && apt-get install -y fortunes' returned a non-zero code: 100"



这是 docker.log 文件显示的内容

time="2017-02-17T12:09:51.222171243+05:30"level=info msg="resolv.conf 中没有非本地 DNS 域名服务器。使用默认外部服务器:[nameserver 8.8.8.8 nameserver 8.8.4.4 ]"
time="2017-02-17T12:09:51.222255579+05:30"level=info msg="IPv6 enabled; 添加默认 IPv6 外部服务器:[nameserver 2001:4860:4860::8888 nameserver 2001:4860:4860::8844]"
time="2017-02-17T12:09:53.358000795+05:30"level=info msg="resolv.conf 中没有非本地 DNS 名称服务器。使用默认外部服务器:[nameserver 8.8.8.8 nameserver 8.8.4.4 ]"
time="2017-02-17T12:09:53.358065387+05:30"level=info msg="IPv6 enabled; 添加默认 IPv6 外部服务器:[nameserver 2001:4860:4860::8888 nameserver 2001:4860:4860::8844]"

另外,我检查了我系统中的 resolv.conf 文件,它有一行“nameserver 127.0.1.1”,在进一步阅读时,我了解到这是一个 IPV4 地址,而不是 IPV6。可能这些信息会有所帮助。

解决此问题的任何帮助都会很棒。

最佳答案

尝试使用 --no-cache 运行它, 像这样:

docker build --no-cache -t docker-whale .

如果这无助于尝试显式删除 apt 列表文件,请在构建期间通过将以下内容添加到 Dockerfile
FROM docker/whalesay:latest
RUN rm -rf /var/lib/apt/lists/*
...

关于ubuntu - "$ docker build -t docker-whale ."抛出一个错误,说 "Some index files failed to download. They have been ignored or old ones used instead.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42269401/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com