On Linux Mint 17.1 x86_64 with kernel 3.13.0-48-generic and OpenSSL version 1.0.1f-1ubuntu2.11; whenever I try to execute any docker command (like docker login
or docker run hello-world
), I get the following error:
FATA[0000] Get http:///var/run/docker.sock/v1.18/info: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?
I have made a group called docker
using sudo usermod -aG docker username
, I have tried running the commands both as root and normally, added $(boot2docker shellinit 2> /dev/null)
to ~/.profile
as instructed here, restarted my PC and reinstalled OpenSSL.
Any idea what am I missing? Can this be a hardware issue?
docker -d
doesn't seems to be mentioned in the documentation. By the way, is it safe to run it asdocker -d &
so that I get my shell back? – Alopecia