Skip to content

Instantly share code, notes, and snippets.

@elyezer
Last active April 26, 2017 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elyezer/328a70edfbb966bc75d37f61255ff4d1 to your computer and use it in GitHub Desktop.
Save elyezer/328a70edfbb966bc75d37f61255ff4d1 to your computer and use it in GitHub Desktop.
Steps to get Docker installed on a Fedora system

Install docker:

sudo dnf install docker

Add the docker group:

sudo groupadd docker

Add your user to the docker group:

sudo usermod -aG docker "${USER}"

Log out and log in. Then start the docker service:

sudo systemctl start docker

You may want to make docker service start during boot, to do that run:

sudo systemctl enable docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment