Reputation: 853
I am new in Docker. I am trying to understand the cluster in Docker but getting a bit confused.
Can anyone help me to understand the cluster in Docker in details?
Thanks in advance
Upvotes: 2
Views: 3246
Reputation: 264761
A cluster in docker refers to multiple nodes joined using swarm mode. Containers are scheduled across the various nodes, and networking is configured with overlay networking to look similar to bridge networks to the containers, but across multiple nodes.
https://docs.docker.com/engine/swarm/
Upvotes: 3