Chapter Summary: Docker Networking
Summarize the concepts covered in this chapter.
We'll cover the following...
Commands
Docker networking has its own docker network
subcommand, and the main commands include:
docker network ls
lists all the Docker networks available to the host.docker network create
is how you create a new Docker network. You have to give the network a name and you can use the-d
flag to specify which driver creates it.docker network
...