0

我正在尝试在 Mac 上的 minikube 中构建一个 docker 映像以进行测试,但是当我运行 apt-get update 时,我收到一堆无法获取消息的消息。

Err http://repo.mysql.com jessie InRelease

Err http://repo.mysql.com jessie Release.gpg
  Unable to connect to repo.mysql.com:http:

Err http://httpredir.debian.org jessie InRelease

Err http://httpredir.debian.org jessie-updates InRelease

Err http://httpredir.debian.org jessie Release.gpg
  Cannot initiate the connection to httpredir.debian.org:80 (2001:41c8:1000:21::21:35). - connect (101: Network is unreachable) [IP: 2001:41c8:1000:21::21:35 80]
Err http://httpredir.debian.org jessie-updates Release.gpg
  Cannot initiate the connection to httpredir.debian.org:80 (2001:41c8:1000:21::21:35). - connect (101: Network is unreachable) [IP: 2001:41c8:1000:21::21:35 80]
Err http://security.debian.org jessie/updates InRelease

Err http://security.debian.org jessie/updates Release.gpg
  Cannot initiate the connection to security.debian.org:80 (2610:148:1f10:3::73). - connect (101: Network is unreachable) [IP: 2610:148:1f10:3::73 80]
Reading package lists...
W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie/InRelease  

W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie-updates/InRelease  

W: Failed to fetch http://security.debian.org/dists/jessie/updates/InRelease  

W: Failed to fetch http://repo.mysql.com/apt/debian/dists/jessie/InRelease  

W: Failed to fetch http://repo.mysql.com/apt/debian/dists/jessie/Release.gpg  Unable to connect to repo.mysql.com:http:

W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie/Release.gpg  Cannot initiate the connection to httpredir.debian.org:80 (2001:41c8:1000:21::21:35). - connect (101: Network is unreachable) [IP: 2001:41c8:1000:21::21:35 80]

W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie-updates/Release.gpg  Cannot initiate the connection to httpredir.debian.org:80 (2001:41c8:1000:21::21:35). - connect (101: Network is unreachable) [IP: 2001:41c8:1000:21::21:35 80]

W: Failed to fetch http://security.debian.org/dists/jessie/updates/Release.gpg  Cannot initiate the connection to security.debian.org:80 (2610:148:1f10:3::73). - connect (101: Network is unreachable) [IP: 2610:148:1f10:3::73 80]

W: Some index files failed to download. They have been ignored, or old ones used instead.

但是,当我在主机上构建相同的图像时,它可以正常工作。当我启动阻止这些站点的 minikube 时,我是否错过了网络设置?

启动 minikube 我跑minikube start --vm-driver=xhyve

4

2 回答 2

1

为避免重新构建 docker 镜像,您可以使用以下命令将本地计算机上构建的镜像传输到 minikube VM 中:

docker save <image> | minikube ssh docker load

来自:https ://twitter.com/markoluksa/status/828996606477422592

于 2017-02-16T17:37:36.723 回答
0

原来是 xhyve 驱动程序。当我切换到使用 virtualbox 时,一切都很好。

于 2017-04-11T14:43:16.473 回答