Running docker without sudo
Problem:
I don't want to use sudo all the time when I issue docker commands.
Solution:
Create a docker group:
Source https://askubuntu.com
I don't want to use sudo all the time when I issue docker commands.
Solution:
Create a docker group:
sudo groupadd docker
Add your user to group:sudo gpasswd -a myuser docker
Restart docker service:sudo service docker restart
Login to your newgroup:newgrp docker
Source https://askubuntu.com
Comments
Post a Comment