Chapter Summary: Docker Overlay Newtworking
Summary of the concepts covered in this chapter.
We'll cover the following...
Commands
Let's explore all the commands covered in this chapter:
docker network create
tells Docker to create a new network. You use the-d overlay
flag to use theoverlay
driver to create an overlay network. You can also pass the-o encrypted
flag to tell Docker to encrypt network traffic. ...