Skip to content

Instantly share code, notes, and snippets.

@valbeat
Created March 23, 2015 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valbeat/aa35d359190dbdea64fa to your computer and use it in GitHub Desktop.
Save valbeat/aa35d359190dbdea64fa to your computer and use it in GitHub Desktop.
CentOS 6.5 (64bit)でDockerを使う ref: http://qiita.com/valbeat/items/776437138630d2f4d763
$ sudo rpm -ivh http://ftp.riken.jp/Linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
$ sudo yum update
$ sudo yum -y remove docker
$ sudo yum -y install docker-io
$ sudo service docker start
$ sudo chkconfig docker on
$ docker --version
$ sudo docker pull centos
$ sudo docker images centos
$ sudo docker run -i -t centos /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment