Docker’s networking subsystem is pluggable, using drivers. Several drivers exist by default, and provide core networking functionality:
bridge: 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. See bridge networks.
host: For standalone containers, remove network isolation between the container and the Docker host, and use the host’s networking directly. host is only available for swarm services on Docker 17.06 and higher. See use the host network.
overlay: Overlay networks connect multiple Docker daemons together and enable swarm services to communicate with each other. You can also use overlay networks to facilitate communication between a swarm service and a standalone container, or between two standalone containers on different Docker daemons. This strategy removes the need to do OS-level routing between these containers. See overlay networks.
macvlan: Macvlan networks allow you to assign a MAC address to a container, making it appear as a physical device on your network. The Docker daemon routes traffic to containers by their MAC addresses. Using the macvlan driver is sometimes the best choice when dealing with legacy applications that expect to be directly connected to the physical network, rather than routed through the Docker host’s network stack. See Macvlan networks.
none: For this container, disable all networking. Usually used in conjunction with a custom network driver. none is not available for swarm services. See disable container networking.
Network plugins: You can install and use third-party network plugins with Docker. These plugins are available from Docker Hub or from third-party vendors. See the vendor’s documentation for installing and using a given network plugin.
$ docker network ls
$ docker container run -d --name webserver nginx
$ docker container ls
$ docker container inspect webserver | less
$ docker container run -d --name webserver -p 80:80 nginx
$ docker container ls
N.B: Try to run another container with the same port 80. You will not be allowed as the host port is already in use. However you can use any other port.
$ docker container run -d --name webserver1 -P nginx
$ docker container ls
$ curl http://<IP_From_The_Output>:<Port>
$ docker container run -it --network=host alpine sh
$ ip a
$ docker network ls
$ docker network inspect NETWORK_ID
$ docker network create mynetwork
$ docker network ls
$ docker container run -d --name my_webserver --network=mynetwork nginx:alpine
$ docker container exec my_webserver ip a