Docker - Docker Compose

Docker-compose is a tool that helps us define and run multiple services together. We declare the services and their attributes in a configuration file and the docker-compose tool reads it and issues the command to docker CLI in order to start and run the services. It helps us abstract all the creation of different components, building or pulling images etc… To run multiple services for a project. Once a compose-file is declared, we can run everything all at once with a single run command, we can also manage them via the docker-compose interface....