What's the difference between Docker Compose and Kubernetes?

后端 未结 12 1987
南笙
南笙 2021-01-29 16:50

While diving into Docker, Google Cloud and Kubernetes, and without clearly understanding all three of them yet, it seems to me these products are overlapping, yet they\'re not c

12条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-29 17:43

    In addition to @yamenk's answer, I'd like to add a few details here which might help people with their journey of understanding Kubernetes.

    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.
    • Kubernetes: is a platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. What?

提交回复
热议问题