Chapter Summary: Docker Networking
Summary of the concepts covered in this chapter.
We'll cover the following...
Commands
Docker networking has its own docker network
sub-command, 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
...