Skip to content

Instantly share code, notes, and snippets.

@oko
Created October 5, 2015 21:38
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 oko/ba10f087ba5e354207e0 to your computer and use it in GitHub Desktop.
Save oko/ba10f087ba5e354207e0 to your computer and use it in GitHub Desktop.
Fedora 22 Docker setup
#!/bin/bash
dnf -y install docker
groupadd -r docker
usermod -a -G docker $(id -un)
systemctl enable docker
systemctl start docker
echo "Please log off and log back in again to apply group changes..."
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment