Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 611 Bytes

troubleshooting.rst

File metadata and controls

16 lines (11 loc) · 611 Bytes

Troubleshooting

I have a PermissionError: [Errno 13] Permission denied

Grocker does not ask for superuser rights before invoking Docker. The Docker socket has to be readable and writable by the current user. Many distributions create this socket to be readable and writable by root and the docker group.

One way to be able to use Grocker is to add your user to the docker group. On Debian:

$ sudo adduser $(whoami) docker
$ su $(whoami)  # reload groups, you should also restart your session