Docker is installed but Docker Compose is not ? why?

mahen3d picture mahen3d · Apr 18, 2016 · Viewed 220.6k times · Source

I have installed docker on centos 7. by running following commands,

curl -sSL https://get.docker.com/ | sh
systemctl enable docker && systemctl start docker
docker run hello-world

NOTE: helloworld runs correctly and no issues.

however when i trying to run docker-compose (docker-compose.yml exists and valid) it gives me the error on Centos only (Windows version works fine for the docker-compose file)

/usr/local/bin/docker-compose: line 1: {error:Not Found}: command not found

Answer

Daniel Stefaniuk picture Daniel Stefaniuk · Apr 18, 2016

You also need to install Docker Compose. See the manual. Here are the commands you need to execute

sudo curl -L "https://github.com/docker/compose/releases/download/1.26.0/docker-compose-$(uname -s)-$(uname -m)"  -o /usr/local/bin/docker-compose
sudo mv /usr/local/bin/docker-compose /usr/bin/docker-compose
sudo chmod +x /usr/bin/docker-compose