Install
https://docs.docker.com/compose/install/
Run this command to download the current stable release of Docker Compose:
curl -L "https://github.com/docker/compose/releases/download/1.29.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
Apply executable permissions to the binary:
chmod +x /usr/local/bin/docker-compose
If the command docker-compose
fails after installation, check your path. You can also create a symbolic link to /usr/bin
or any other directory in your path.
ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
Test Installation
$ docker-compose --version docker-compose version 1.29.0, build 1110ad01