Reputation: 25
I've used sudo systemctl enable docker.service
but the service won't start.
Upvotes: 1
Views: 4699
Reputation: 1155
try this (3 separate commands from the terminal):
$ sudo systemctl unmask docker.service
$ sudo systemctl unmask docker.socket
$ sudo systemctl start docker.service
Upvotes: 14