Follow the instructions here
sudo service docker startSee if the Docker daemon is running:
sudo docker ps
If you get an error about not being able to connect to the Docker socket check the logs at /var/logs/docker.log.
You can confirm that the service is in fact down with service docker status.
If you see something about iptables you'll want to edit /etc/init.d/docker.
Look for the line with DOCKER_OPTS= and edit it to read
DOCKER_OPTS="--iptables=false"Restart the service with sudo service docker start and confirm it's running with service docker status.
Note that this is obviously not the most secure approach but for development environments it should be fine.
This seems to work for running containers but I am unable to access outside network resources from inside of the containers.