This lesson shows how to create a custom Docker bridge network named 'my_bridge'. First, the command 'docker network create --driver bridge my_bridge' creates the network. Then, 'docker network ls' lists all networks including the new one. Next, a container named 'container1' is run attached to 'my_bridge' using 'docker run -dit --name container1 --network my_bridge alpine sh'. Inspecting the network confirms the container is connected. Trying to create the same network again causes an error because the name is already taken. Variables tracked include the list of networks and containers connected. Key points include understanding why duplicate network creation fails and how to verify container network connection. The quizzes test understanding of the execution steps and effects of changing network names.