Reference Link:
https://upessocs.github.io/#dir=/Lectures/Containerization%20and%20DevOps/Theory/&file=202%20Networking%20in%20Docker.md
This experiment focuses on understanding Docker networking, including default bridge networks, custom bridge creation, and container communication.
This task involves checking the default Docker bridge network and understanding its configuration.
Shows the inspection output of the default bridge network.

Displays IP range, gateway, and connected containers.

In this task, a new custom bridge network is created to avoid IP conflicts.
Shows the command used to create a new bridge network.

Displays subnet and gateway details of the custom network.

Here, multiple containers are connected to the same custom network.
Shows containers running inside the custom bridge network.

Displays assigned IP addresses to each container.

This task verifies communication between containers using container names.
Shows successful ping and DNS resolution between containers.

Demonstrates checking network connectivity from host to container.

In this experiment, we learned how to:
This helps in building scalable and isolated container-based applications using Docker networking.