Docker کئی نیٹ ورک ڈرائیورز فراہم کرتا ہے (bridge، host، overlay، macvlan، none) مختلف کنیکٹیویٹی کی ضروریات کے لیے، اور صارف کی طرف سے متعرفہ نیٹ ورکس جیسی خصوصیات DNS-پر مبنی سروس ڈسکوری کے ساتھ۔ نیٹ ورکنگ کو گہرائی سے سمجھنا ملٹی-کنٹینر اور ملٹی-ہوسٹ ایپلیکیشنز کو صحیح طریقے سے جوڑنے کے لیے اہم ہے۔
نیٹ ورک ڈرائیورز
BRIDGE (default) → a private internal network on a single host; containers communicate;
isolated from the host except via published ports. USER-DEFINED bridges add DNS
(containers reach each other by name) — preferred over the default bridge.
HOST → the container uses the host's network stack directly (no isolation, no port
mapping needed) — max performance, less isolation.
OVERLAY → spans MULTIPLE hosts → containers on different machines communicate
(for Docker Swarm / multi-host clusters).
MACVLAN → gives a container its own MAC/IP on the physical network (appears as a
physical device).
NONE → no networking (fully isolated).
