On windows my solution is following:
create a windows batch script "C:\Program Files\Docker Toolbox\kitematic_proxy.cmd" and insert following script and replace "YOUR_PROXY" with the http://host:port of your proxy
-------------
set proxy=YOUR_PROXY
SET HTTP_PROXY=%proxy%
SET HTTPS_PROXY=%proxy%
for /f %%i in ('docker-machine.exe ip default') do set DOCKER_HOST=%%i
SET NO_PROXY=%DOCKER_HOST%
set DOCKER_HOST=tcp://%DOCKER_HOST%:2376
cd Kitematic
Kitematic.exe
-------------
Btw. if you have generally an enterpise proxy between your station and internet you also shall configure this proxy in your boot2docker vm host:
Because of worng keyboard layout and problems with special key in oracle virtual box native console i connected with WinScp on my docker host using DOCKER_HOST IP login user:docker and pwd:tcuser. Then edit the profile to add proxy settings:
-------------
sudo vi /var/lib/boot2docker/profile
Press 'i' to start editing mode
export HTTP_PROXY=http://your.proxy.name:8080
export HTTPS_PROXY=http://your.proxy.name:8080
Press 'escape' and then type ':x' to save and exit the file. Now retsart your vm to make proxy active
Thanks @FugDev ! Your cmd-file is workeing for me, too.
Same issue here. As far as I know, we are not using a corporate proxy (so I don't know a proxy server address), but there is a root certificate "injected" somewhere. I want to mark the certificate as trusted.

I am also trying to find a way to make the certificate of our proxy trusted by Kitematic. Maybe in a future release?

getting error any solution

$ env
HTTPS_PROXY=http://10.244.161.20:3128
HTTP_PROXY=http://10.244.161.20:3128
@zivc Please see how to properly set this up by following the Wiki info:
https://github.com/docker/kitematic/wiki/Common-Proxy-Issues-&-Fixes
@Akhena @zivc 锛宧i锛孖 have meet the same issue with you, how do you solve the problem finally?
@BecauseofLxcCheckpoint Unfortunately (because of this issue) I don't use kitematic anymore in my professional environment
We are trying to address this issue with the new Docker for Mac and Windows betas. Please sign up at https://beta.docker.com if you are interested. Ping me at [email protected], if you need to a pass. Please mention this issue so I know.
+1 that I'm having this issue on OS X
@patdohere is this with Docker for Mac beta as well?
Yes this is Docker for Mac. Only with Kitematic when I'm behind a VPN.
@patdohere We release Kitematic v0.10.2 today which includes a few fixes. Can you check if that fixed your problem?
Seems to be fixed on my end 馃憤
Most helpful comment
On windows my solution is following: