Sarathlal N

Installing Docker Compose in Linux Mint 20

Install required packages & tools

sudo apt update
sudo apt install wget curl

Download docker compose

curl -s https://api.github.com/repos/docker/compose/releases/latest | grep browser_download_url  | grep docker-compose-linux-x86_64 | cut -d '"' -f 4 | wget -qi -

Make the script executable

chmod +x docker-compose-linux-x86_64

Move the file inside PATH directory

sudo mv docker-compose-linux-x86_64 /usr/local/bin/docker-compose

Verify that installation was successful

docker-compose version

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.