Docker compose is a tool that is used for defining and running multi-container Docker apps in an easy way.
It provides docker-compose.yml configuration file that can be used to bring up an app and the suite of services it depends on
with just one command.
docker-compose up- start all services fromdocker-compose.ymldocker-compose up db- start only servicedbdocker-compose up --build- rebuild all images and run containersdocker-compose -f docker-compose.prod.yml up- start all services fromdocker-compose.prod.yml