I want to make a move to Docker, so I\'ve just started to mess around with it. I\'ve installed Docker on a VirtualBox Ubuntu 15.10 (Wily Werewolf) installation and as sugges
For Ubuntu 16.04
Inside file /lib/systemd/system/docker.service change:
/lib/systemd/system/docker.service
ExecStart=/usr/bin/dockerd fd://
with:
ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375
Inside file /etc/init.d/docker change:
/etc/init.d/docker
DOCKER_OPTS=
DOCKER_OPTS="-H tcp://0.0.0.0:2375"
and then restart your computer.