Source: medium.com

Bridge Network in Docker

Category: shell

Here is an hands on tutorial on docker bridge networks. This command will list all the docker networks currently running on the host machine which is generally your computer.

The ip of the containers is specified in the response from docker network inspect bridge under the Containers key.

To connect a container to a user defined bridge, the name of the network should be explicitly specified in the docker run command while creating the container

The command to see the network drivers in docker is: Docker uses the libnetwork which is an implementation of the Container Network Model.

Related Articles