Created
August 11, 2014 13:05
-
-
Save tureki/a9ccd71ac17f9d131f70 to your computer and use it in GitHub Desktop.
Centos6.5 docker install
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
#!/bin/bash | |
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
yum -y install docker-io | |
docker run centos /bin/echo "Hello World" | |
chkconfig docker on | |
service docker start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment