$ docker run -d --name=nginx_host --net=host nginx:1.25.0
$ sudo netstat -nlp | grep 80
$ curl localhost
$ docker network create mynetwork
$ docker network ls
$ route
br-153ba10cef4a
$ ifconfig
$ docker run --net=mynetwork -it --name=network-1 ubuntu:14.04 bash
$ docker run --net=mynetwork -it --name=network-2 ubuntu:14.04 bash
$ docker network inspect mynetwork
$ brstl show