I'm having trouble getting Docker Toolbox for Windows 10 working behind a company proxy.
I can't get docker login or docker run to work, so here's what I've done to debug.
I created an plain ubuntu machine within a virtual machine.
On my host machine, I start simple server running on port 8000.
In ubuntu:
$ curl 10.0.2.2:8000
$ [it retrieves the html being served]
$ curl www.google.com
$ curl (7) Failed to connect to www.google.com port 80: Connection refused
$ export http_proxy=http://my-proxy:3128
$ curl www.google.com
$ [302 HTTP response from google]
On boot2docker:
$ curl 10.0.2.2:8000
$ [it retrieves the html being served]
$ curl www.google.com
$ curl (7) Failed to connect to www.google.com port 80: Connection refused
$ export http_proxy=http://my-proxy:3128
$ curl www.google.com
$ curl: (7) Failed to connect to my-proxy:3128: No route to host
What's going on here?