Any distribution of architecture as easy as possible.
# Install docker latest version from original website
curl -fsSL https://get.docker.com/ | sh
# Adding your user to the "docker" group
sudo usermod -aG docker $(whoami)
## you will have to log out and back in for this to take effect!
# Start the docker daemon at boot
sudo chkconfig docker on
# or
sudo systemctl enable docker
# Check everything is okay
docker info
docker run hello-world
# If you have error in connect to docker daemon
## Restart Docker deamon
sudo service docker restart
## Or reboot! :D
sudo reboot
Go to the Compose repository release page on GitHub and find latest version.
curl -L https://github.com/docker/compose/releases/download/1.10.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose