Installing Docker-Compose on Ubuntu 14.04

The article is based on an already installed docker package.

Official installation page docker-compose .

I will consider installing on ubuntu 14.04. Be sure to visit the docker-compose website as the install link is dynamic and subject to change. The most recent link is taken from offsite.

1. We take a link from offsite and run it in the console :

sudo curl -L https://github.com/docker/compose/releases/download/ 1.21.2 /docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose

in my case it is release 1.21.2 .

2. Set up privileges :

sudo chmod +x /usr/local/bin/docker-compose

chmod +x - allows you to open only read the script, without the ability to edit it.

3. Installation is completed, check the version :

docker-compose -v

in my case it is docker-compose version 1.21.2, build a133471

docker-compose version

1705 0

Comments

Be the first to review this item. Share your rating and review so that other customers can decide if this is the right item for them.
You have to log in to leave a comment. Sign in

Similar articles