Last active
November 28, 2019 11:47
-
-
Save andyrichardson/3dbc778b4cf9ed4e0babc3c362b4dc82 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dnf update -y | |
dnf groupinstall "Development Tools" | |
dnf install perl kernel-devel kernel-headers dnf-plugins-core | |
dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo | |
dnf install docker-ce docker-ce-cli containerd.io | |
systemctl start docker | |
systemctl enable docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment