This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Description
I installed a fresh copy of docker toolbox and had docker-machine up and running just fine.
As soon as I run the docker run command as shown below:
docker run -dt -p 127.0.0.1:8483:80 /
I start seeing this error:
(env)bash-3.2$ docker images
An error occurred trying to connect: Get https://192.168.99.100:2376/v1.20/images/json: remote error: handshake failure
(env)bash-3.2$ docker ps -a
An error occurred trying to connect: Get https://192.168.99.100:2376/v1.20/containers/json?all=1: remote error: handshake failure
Does anybody know why this is happening? The versions are listed below:
(env)bash-3.2$ docker --version
Docker version 1.8.0, build 0d03096
(env)bash-3.2$ docker-machine --version
docker-machine version 0.4.0 (9d0dc7a)
(env)bash-3.2$ docker-machine ls
NAME ACTIVE DRIVER STATE URL SWARM
default * virtualbox Running tcp://192.168.99.100:2376
Does it have to do with how the registry accepts connections? I am trying to connect to our internal docker registry so it might be configured in a different way. Is there a way to get past this?
Thanks!