Problem Statement
What is the primary purpose of the docker-compose tool?
Explanation
Docker Compose allows you to define services, networks and volumes for a multi-container application in a compose YAML file, then bring them up with a single command. It simplifies orchestration for local development and small deployments.
