A namespace is a way of scoping a particular set of identifiers. Using a namespace, you can use the same identifier multiple times in different namespaces. You can also restrict an identifier set visible to particular processes.
Scott's Weblog
$ docker run --rm -p 8080:5000 avikjis27/node-server
$ docker run --rm --net=host avikjis27/node-server
$ docker run --rm --net=none avikjis27/node-server
$ vagrant up
$ sudo docker service create --name node-server
--replicas 3 --publish published=8080,target=5000
avikjis27/node-server