Allowing user on CentOS to run docker command without sudo

Out of the box for a Docker install on CentOS 7, you have to sudo the docker command to interact with Docker. Per the post-install steps here, create a docker group and add your user to that group: sudo groupadd docker sudo usermod -aG docker youruser Logging off and back on again, you should now … Continue reading Allowing user on CentOS to run docker command without sudo