Docker is not running

0

Good evening, guys

I installed the docker and created some container, my computer crashed and after restarting it when trying to execute the docker command returns the message: Is docker daemon running on this host?

On the internet I found start-only commands for the containers, but I do not think for docker. If anyone can help, thank you.

    
asked by anonymous 13.06.2017 / 07:41

1 answer

2

You need to add your user to the docker group:

$ sudo usermod -aG docker $USER

Then log in again and you should have access.

    
13.06.2017 / 12:19