Score:3

How to upgrade docker-compose

jm flag

My Ubuntu 20.04 installs version 1.25.0 of docker-compose while the most recent version is 2.0.1 (why is that?).

Is there any method to force Ubuntu to install the latest version?

If not, so I have to follow the official instructions, but the curl command is pointing to /usr/local/bin directory while on my machine it is installed on /usr/bin.

So what is the safe method to upgrade my package?

user535733 avatar
cn flag
See [Why don't the Ubuntu repositories have the latest versions of software?](https://askubuntu.com/questions/151283/why-dont-the-ubuntu-repositories-have-the-latest-versions-of-software).
Omid Shojaee avatar
jm flag
I clearly asked how to manually upgrade the package.
Artur Meinild avatar
vn flag
The official [Docker pages](https://docs.docker.com/compose/cli-command/) clearly explains how you install this on Linux. However this will be a "manual" installation, and not a package installation.
Omid Shojaee avatar
jm flag
I never asked for a package installation. And the main reason I asked this question here is that the folder structure of what I have now is different from the instructions on docker page (as I clearly mentioned in the question).
bcag2 avatar
vn flag
Same issue for me, I use Ubuntu 18.04 and I have dc v1.17. The doc, for example for .env use : https://docs.docker.com/compose/environment-variables/#the-env-file specify version 1.28, so I would like to upgrade on my computer and my server.
Score:0
vn flag

Docker-compose takes place only in a binary file, so it is easy to put the last version !
First, if you have a previous installed version, remove it, in my case, I had version from main repository, so I ran :
sudo apt remove docker-compose
then go to https://github.com/docker/compose/releases and download, for example, for 2.2.3 : https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-x86_64
or other one
then move this file to :
sudo mv docker-compose-linux-x86_64 /usr/local/bin/docker-compose
and
sudo chown +x /usr/local/bin/docker-compose
check d-c runs correctly :  docker-compose --version
that returns in my case : Docker Compose version v2.2.3

Under ubuntu 18.04, official docker are today at v19.03.13 and it is ok to work with compose v2

See also :

user2592686 avatar
cn flag
i think you mean "chmod +x" not "chown +x"
Score:0
cn flag

You are using an older release of Ubuntu, which generally runs older software. To run newer software, use a newer release of Ubuntu.

See Why don't the Ubuntu repositories have the latest versions of software?.

Note that the newest deb package for docker-compose is 1.27.
nobody has packaged 2.0.1 yet.

The BEST way to get newer deb packages is to help the Debian volunteers package it.

Omid Shojaee avatar
jm flag
Did you read the entire question?
Artur Meinild avatar
vn flag
@OmidShojaee Did you understand the answer? There is no package of Docker Compose 2.0 yet.
Omid Shojaee avatar
jm flag
And I asked about the package on Github (refer to the link of official instructions I posted in my question).
user535733 avatar
cn flag
You seem to want to install software from source (github). However, your Question was ambiguous -- you only made that clear in a comment. This answer was written before you made that clarification. Consider editing your question to clearly ask the question that you want an answer for. You will get better help if you do.
Omid Shojaee avatar
jm flag
My question was very clear. You didn't read the instructions I linked to.
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.