docker,

How to Install Docker Compose on Ubuntu 23.04

Apr 30, 2023 · 1 min read · Post a comment

To install Docker Compose on Ubuntu 23.04, you can either set up Docker’s repository on your Ubuntu system or install Compose manually. Here I will show you how to install the standalone version of Docker Compose on Ubuntu 23.04.

Prerequisites

  • sudo privileges
  • docker installed

Install Docker Compose on Ubuntu 23.04

Step 1. Update the packages.

sudo apt-get update

Step 2. Download the Docker Compose binary:

sudo curl -SL https://github.com/docker/compose/releases/download/v2.17.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose

Step 3. Make the binary executable:

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

Step 4. Verify that Docker Compose is installed correctly:

docker-compose --version

Conclusion

Feel free to leave a comment below and if you find this tutorial useful, follow our official channel on Telegram.