Last active
January 2, 2016 00:49
-
-
Save ruebenramirez/8226033 to your computer and use it in GitHub Desktop.
install docker on CentOS6.4 64bit
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 | |
sudo su - | |
yum -y update | |
yum -y install docker-io | |
yum -y update docker-io | |
yum -y update --enablerepo=epel-testing docker-io-0.7.2-2.el6 | |
service docker start | |
chkconfig docker on | |
# Sources: | |
# * http://docs.docker.io/en/latest/installation/rhel/ | |
# * https://bugzilla.redhat.com/show_bug.cgi?id=1045220#c6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment