What’s the difference between Docker Compose and Kubernetes?

A rough description of where Docker, Docker Compose, Docker Cloud, and Kubernetes overlap and where one is dependent on the other

Flutter Developer

--

Short answer:

  • docker-compose: is a tool that takes a YAML file which describes your multi-container application and helps you create, start/stop, remove all those containers without having to type multiple docker ... commands for each container.

--

--