2017-03-07 53 views
0

下載泊塢窗機當我嘗試在泊塢文檔指定下載泊塢窗機,我得到以下錯誤:不能從GitHub

$curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine 

curl: (35) error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol 

我使用Ubuntu 14.04,我不知道多少關於捲曲和網絡,任何幫助將不勝感激。如果有另一種安裝docker機器的方法,請建議,文檔沒有爲Linux指定任何其他方式。

回答

0

以http沒有使用https嘗試,它可以與SSL證書:

捲曲-L http://github.com/docker/machine/releases/download/v0.10.0/docker-machine- $信息(uname -s) - $(uname -m輸出)>的/ tmp /泊塢窗機

+0

由於運行這些命令@ EFREV123,我也嘗試使用HTTP,命令運行良好,但泊塢窗機不會安裝。 – nithin

+0

查看[docs.docker.com](https://docs.docker.com/machine/install-machine/#installing-machine-directly)中的完整命令: chmod + x/tmp/docker-機器&& sudo cp/tmp/docker-machine/usr/local/bin/docker-machine它適用於我 – EFREV123

0

這似乎是一個證書問題。

嘗試從doc

$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common

+0

我試過了這個命令,但是一切都已經在最新版本了。 – nithin