intermediate/workshop/lab1-docker-network-overlay.md
The overlay network is used to enable containers on different hosts to communicate. Under this lab exercise, we will see how to create Overlay network.
The following command will create a new overlay network called collabnet. All containers registered to this network can communicate with each other, regardless of which node they are deployed onto.
docker network create -d overlay collabnet
docker network ls
docker network inspect collabnet