244 B
244 B
Add user to docker group
Adding a user to the docker group allows the user to run docker without the need
of sudo permission.
sudo groupadd docker
sudo usermod -aG docker $USER
Log out and in for the change to take effect.