What's the difference between Docker Compose and Kubernetes?

后端 未结 12 1999
南笙
南笙 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:33

    Docker-Compose is a deployment file that predefined one or more container with its environment such as volumes, networking, a command to run and so on.

    Kubernetes, on the other hand, is a system that orchestrates docker containers and other microservices by and makes them scaled and reliable across multiple nodes

提交回复
热议问题