Run Docker without Sudo
# Check if the docker Group Exists
getent group docker
# If it returns nothing, create the group:
sudo groupadd docker
# Add your user to Docker group
sudo usermod -aG docker [USERNAME]
# Apply without restart
newgrp docker
# Check if the docker Group Exists
getent group docker
# If it returns nothing, create the group:
sudo groupadd docker
# Add your user to Docker group
sudo usermod -aG docker [USERNAME]
# Apply without restart
newgrp docker