with Alpine Linux v3.4, when doing wget got errors.
ex:
bash-4.3# wget https://get.docker.com/builds/Linux/x86_64/docker-1.9.1.tgz
Connecting to get.docker.com (54.230.7.103:443)
wget: can't execute 'ssl_helper': No such file or directory
wget: error getting response: Connection reset by peer
tried
apk update
apk add ca-certificates
update-ca-certificates
But it does not help
Try adding the "openssl" package as well -- that should do the trick.
("wget" shells out to "openssl" as its "ssl_helper")
tried apk add openssl. ssl_helper error is gone. but still get error:
Connecting to get.docker.com (54.192.142.119:80)
Connecting to get.docker.com (54.230.207.99:443)
wget: error getting response: Connection reset by peer
It helped with:
apk add ca-certificates wget
I would imagine that link is probably doing an https redirect.
right; regular http links are ok
apk --no-cache add ca-certificates openssl libstdc++ && update-ca-certificates
Most helpful comment
It helped with:
apk add ca-certificates wget