All my posts about varous tools
Installing Docker 1.3.x on CentOS 7
When Docker 1.3↗ was released a few weeks ago I was interested in using the process injection docker exec functionality. Unfortunately, all of the repos which provide RPMs for Docker are out of date, the documentation suggests a manual installation↗ of the binary which is turns out to be straight forward: Installing Docker 1.3.x on CentOS 7 1/2 # Download the binary & set the permissions curl -L https://get.docker.com/builds/Linux/x86_64/docker-latest > /usr/bin/docker; chmod +x /usr/bin/docker # Download the systemd files curl -L https://raw.githubusercontent.com/docker/docker/master/contrib/init/systemd/docker.service > /usr/lib/systemd/system/docker.service curl -L https://raw.githubusercontent.com/docker/docker/master/contrib/init/systemd/docker.socket > /usr/lib/systemd/system/docker.socket # Enable & start the service systemctl enable docker systemctl start docker # Install Fig as well curl -L https://github.com/docker/fig/releases/download/1.0.0/fig-`uname -s`-`uname -m` > /usr/local/bin/fig; chmod +x /usr/local/bin/fig now to check it works: ...