Skip to content

Instantly share code, notes, and snippets.

@izmailoff
Created October 22, 2017 08:13
Show Gist options
  • Save izmailoff/913e04e4761ef41a2435199447bfb586 to your computer and use it in GitHub Desktop.
Save izmailoff/913e04e4761ef41a2435199447bfb586 to your computer and use it in GitHub Desktop.
Setup docker on Fedora without sudo
sudo dnf install docker
# Start/enable service
sudo systemctl start docker
sudo systemctl enable docker
# Allow docker to run without sudo/root privs
sudo groupadd docker && sudo gpasswd -a ${USER} docker && sudo systemctl restart docker
newgrp docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment