docker - Boot2docker proxy on windows -


i have installed boot2docker on windows. i've tried configure proxy of following link (https://github.com/boot2docker/boot2docker-cli/issues/230), didn't work.

when execute boot2docker download, have following error:

boot2docker download latest release github.com/boot2docker/boot2docker v1.6.0 downloading boot2docker iso image... error in run: failed download iso image: https://s3.amazonaws.com/github-cloud/releases/14930729/0573f322-e442-11e4-8500-b1bbe904b032.iso?response-content-disposition=attachment%3b%20filename%3dboot2docker.iso&response-content-type=application/octet-stream&awsaccesskeyid=akiaistnzfovbijmk3tq&expires=1430303112&signature=otercmri%2fkqd9cba315jhnhzehk%3d:  proxy authentication required 

see "how docker run on windows system behind corporate firewall?"

you need setup

  • set http_proxy, https_proxy , no_proxy in cmd session, in order boot2docker download work.

  • (export) http_proxy, http_proxy , no_proxy in /var/lib/boot2docker/profile in order docker search (for example) work.

    export http_proxy=http://<user>:<pwd>@proxy.company:80 export https_proxy=http://<user>:<pwd>@proxy.company:80 export no_proxy=.company,.sock,localhost,127.0.0.1,::1,192.168.59.103 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -