将Docker安装到Vagrant VM失败

时间:2015-04-28 09:42:34

标签: ssh docker vagrant

我正在使用Vagrant和Docker这个问题发生在我vagrant up我的机器上,它之前工作正常:

==> default: Running provisioner: docker...
    default: Installing Docker (latest) onto machine...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

curl -sSL https://get.docker.io/gpg | apt-key add -

Stdout from the command:

Stderr from the command:

stdin: is not a tty
curl: (35) Unknown SSL protocol error in connection to get.docker.io:443
gpg: no valid OpenPGP data found.
你知道是什么导致了这个问题吗?或者如何解决它?

2 个答案:

答案 0 :(得分:0)

curl: (35) Unknown SSL protocol error in connection一样,您可以尝试使用以下方法进行调试:

curl -v https://get.docker.io/gpg

在文章中,这是一个访问问题:

  

我注意到它正在连接iPV6地址。我不确定我们的PG服务器是否支持iPV6。

     

查看Curl的手册页,我看到了将域名解析为IPv4地址的选项。我试过的时候:

curl -v -4 https://my.pg.server
  

有效。

答案 1 :(得分:0)

我刚使用1.6.5遇到了这个问题,发现它有been fixed in the Vagrant。 1.7.2为我工作。奇怪的是,我在一个月前设置了一个新的VM而没有遇到问题,也许Docker已经使用SSL来回。