Benefits of docker-compose
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
- Docker compose is used for running multiple container as 1 service
- Each service is isolated from one another
- No dependency to start each service independently
- one yaml file contains all and can be run in 1 shot
- Docker manages single container , docker-compose manages multiple applications
- It is a powerful tool , to set up and deploy application
- Start all services: Docker Compose up.
- Stop all services: Docker Compose down.
- Run Docker Compose file: Docker-compose up -d.
- List the entire process: Docker ps.