09-09-2020, 10:23 AM
(09-06-2020, 11:42 PM)appelgriebsch Wrote: As docker is run as daemon in the background you need to be part of a specific ‘docker’ group to be able to use it from a normal user account.
To enable your current logged on user you will have to:
1. go to a terminal
2. run sudo usermod -aG docker <username>
3. log off and on again to activate the changes
4. you can check your group membership with the groups command in a terminal. It should list the docker group.
The provided solution worked for me.
Thank You!