Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How to upgrade docker-compose to latest version

// First, remove the old version:

//STEP- 1
// If installed via apt-get
sudo apt-get remove docker-compose
// If installed via curl
sudo rm /usr/local/bin/docker-compose
//If installed via pip
pip uninstall docker-compose

// STEP-2 GET LATEST VERSION
// curl + grep
VERSION=$(curl --silent https://api.github.com/repos/docker/compose/releases/latest | grep -Po '"tag_name": "K.*d')

// FINAL_STEP Install and make it executeable
DESTINATION=/usr/local/bin/docker-compose
sudo curl -L https://github.com/docker/compose/releases/download/${VERSION}/docker-compose-$(uname -s)-$(uname -m) -o $DESTINATION
sudo chmod 755 $DESTINATION

// for docker-compose 3.9 
// https://docs.docker.com/compose/compose-file/compose-file-v3/#resources
Comment

how to upgrade docker-compose version

First step, remove the existing version

// If installed via apt-get
sudo apt-get remove docker-compose

// If installed via curl
sudo rm /usr/local/bin/docker-compose

// if installed via pip
pip uninstall docker-compose

Second step, Install the new one (check the latest version from here https://docs.docker.com/compose/install/)

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

Third step, make it accessible

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

Fourth, finally check whether version is update

docker-compose --version
Comment

upgrade docker-compose version

$ sudo apt update
$ sudo apt install docker-compose-plugin
$ sudo rm /usr/local/bin/docker-compose
$ echo 'alias docker-compose="docker compose"' >> ~/.bashrc
$ source ~/.bashrc
$ docker-compose version
Comment

docker-compose update

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

how to upgrade docker compose version in windows

Invoke-WebRequest "https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFilesDockerdocker-compose.exe
Comment

how to upgrade docker compose version in windows

Invoke-WebRequest "https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFilesDockerdocker-compose.exe
Comment

how to upgrade docker compose version in windows

Invoke-WebRequest "https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFilesDockerdocker-compose.exe
Comment

how to upgrade docker compose version in windows

Invoke-WebRequest "https://github.com/docker/compose/releases/download/v2.10.2/docker-compose-Windows-x86_64.exe" -UseBasicParsing -OutFile $Env:ProgramFilesDockerdocker-compose.exe
Comment

PREVIOUS NEXT
Code Example
Shell :: remove port iptables 
Shell :: check branches git 
Shell :: bash get last character of string 
Shell :: flutter Android sdkmanager not found. Update to the latest Android SDK and ensure that the cmdline-tools are installed to resolve this. 
Shell :: how to find all the dir in current working directory in linux 
Shell :: linux terminal speed test 
Shell :: how to push another account git 
Shell :: install postman in ubuntu 20.04 
Shell :: how to upgrader vscodium 
Shell :: aab to apk 
Shell :: ubuntu folder size 
Shell :: how to check if I have sudo permission 
Shell :: hide desktop icons macos 
Shell :: undo previous commit locally 
Shell :: get working directory rstudio 
Shell :: import csv into mongodb 
Shell :: bash count elements in string 
Shell :: linux memes 
Shell :: chmod 777 command in linux 
Shell :: sed replace number 
Shell :: install latest node js ubuntu 
Shell :: scp linux file to windows from windows. 
Shell :: yarn version in mac 
Shell :: ubuntu port ping 
Shell :: find text in linux file 
Shell :: grep lines between two patterns in unix 
Shell :: bash: conda: command not found 
Shell :: install cassandra ubuntu 
Shell :: how to see hidden files in terminal mac 
Shell :: ssh for github 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =