Last active
July 3, 2018 18:44
-
-
Save YakDriver/0a6b77ac32b0329cb97a9ca07dad164b to your computer and use it in GitHub Desktop.
Install docker on CentOS
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
sudo su | |
yum install epel-release | |
yum --enablerepo=epel install docker-io | |
# centos 7 | |
systemctl start docker | |
# centos 6 | |
service docker start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment