What is Docker Compose?
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services.
Then, with a single command, you create and start all the services from your configuration.
INSTALLING DOCKER COMPOSE
install Docker Compose
sudo curl -L "https://github.com/docker/compose/releases/download/v2.6.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
Apply executable permissions to the binary:
sudo chmod +x /usr/local/bin/docker-compose
Check your docker compose version
docker-compose -v
To install Docker Compose on other non linux bases operating systems such as Mac, Windows, Windows Server, Click Here.