Docker - server gets into EOF

I just installed docker and boot2docker on Mavericks. I did the usual

boot2docker init boot2docker start export DOCKER_HOST=tcp://localhost:4243 

and he says the server is up and running. But when I try to connect (e.g. docker info ), I get

 2014/06/07 10:45:55 Get http://localhost:4243/v1.11/info: EOF 

I assume that something is wrong with the demon, but I can’t hack this one ... Does anyone know what it could be?

Note. I did not install a complete copy of VirtualBox when I installed docker / boot2docker because I already installed it. Could something be missed?

+6
source share
2 answers

https://github.com/boot2docker/boot2docker/releases/tag/v0.12.0

Note. This update changes the Docker open port from 4243 to 2375, and version v0.12.0 of the new boot2docker management tool will be required. This version of Boot2Docker is not backward compatible with older management tools.

+5
source

I have the same problem, but I still can not use boot2docker v0.12.0.

I just install boot2docker using Go directly go get github.com/boot2docker/boot2docker-cli

0
source

Source: https://habr.com/ru/post/970507/


All Articles