w3outlook
w3outlook

Reputation: 853

What is Cluster in Docker?

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

Answers (1)

BMitch
BMitch

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

Related Questions