Created
March 22, 2017 05:01
-
-
Save donilan/77e6551a281289191bee98ac89dd2ea2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/bash | |
yum install -y yum-utils | |
yum-config-manager \ | |
--add-repo \ | |
https://download.docker.com/linux/centos/docker-ce.repo | |
yum makecache fast | |
yum update -y | |
yum install docker-ce -y | |
systemctl start docker | |
systemctl enable docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment