Docker without root
Published on
Create the docker
group.
sudo groupadd docker
Add your user to the docker
group.
sudo usermod -aG docker $USER
Apply the changes to the group.
newgrp docker
Verify if you can run docker
.
docker version
This work is licensed under a Creative Commons Attribuition-ShareAlike 4.0 International License .