Skip to content

Instantly share code, notes, and snippets.

@ruebenramirez
ruebenramirez / installDockerCentos64_64bit.sh
Last active January 2, 2016 00:49
install docker on CentOS6.4 64bit
#! /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