All my posts about Docker
Update to CentOS 7 Docker install one-liner
UPDATE 26/07/2015 In typical fashion, a few weeks after posting this Docker themselves released a much better version than mine, you can install it using the following commands; Update to CentOS 7 Docker install one-liner 1/2 curl -sSL https://get.docker.com/ | sh systemctl enable docker && systemctl start docker docker run hello-world What follows is the original, now mostly redundant post. It’s been a while since I touched the code for the one-liner Docker installer I wrote a while back. ...