Build your intuition. Fill in the missing part by typing it in.
Docker networking allows containers to communicate with each other and with the outside world. Understanding Docker networking concepts and knowing how to connect containers is essential when building complex applications with multiple services.
When you run a container, Docker creates a default bridge network named __________
. This network allows containers to communicate with each other using IP addresses within the same network subnet. Docker assigns an IP address to each container within the bridge network.
Write the missing line below.