You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
6.[Some miss conception about docker](#docker-misconception)
@@ -83,6 +83,15 @@
83
83
New network Example: ```docker network create --driver <driver-name> <network name>```\
84
84
Connect a Docker Container to a Network example: ```docker network connect <network_id or n_name> <container_id or c_name>```
85
85
86
+
#### Different Types of Docker Network: \
87
+
**bridge(Default)**: The default network driver. If you don’t specify a driver, this is the type of network you are creating. Bridge networks are usually used when your applications run in standalone containers that need to communicate.\
88
+
**host**: For standalone containers, remove network isolation between the container and the Docker host, and use the host’s networking directly. \
89
+
**overlay**: Overlay networks connect multiple Docker daemons together and enable swarm services to communicate with each other. \
90
+
**ipvlan**: IPvlan networks give users total control over both IPv4 and IPv6 addressing. \
91
+
**macvlan** : Macvlan networks allow us to assign a MAC address to a container.\
92
+
**none**: This one used for disable all networking \
93
+
**Also we can make other network by using third party plugin
0 commit comments