We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
While running docker build it complains about lack of permission.
$ docker build -t gentoo .
2014/07/08 03:58:56 Post http:///var/run/docker.sock/build?rm=1&t=gentoo: dial unix /var/run/docker.sock: permission denied
Solution:
Add the user running the docker command to the docker group (command: usermod -a -G docker <user>).
docker
usermod -a -G docker <user>