Skip to content
Felix Garcia Borrego edited this page Aug 16, 2015 · 16 revisions

How to connect Docker UI using docker-machine on Windows

TODO

How to connect Docker UI using Boot2Docker on Windows

The easiest way to connect to Docker Remote API is by disabling TLS. To do so, you need to:

  • Log into the boot2docker virtual machine:

boot2docker ssh

  • Add export DOCKER_TLS=no to the file /var/lib/boot2docker/profile (may not exist)

echo "export DOCKER_TLS=no" | sudo tee /var/lib/boot2docker/profile

  • Restart boot2docker
boot2docker down
boot2docker up

More info about how to disable TLS: https://github.com/boot2docker/boot2docker/blob/master/README.md#tls-support

Clone this wiki locally