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 lslists all the Docker networks available to the host.docker network createis how you create a new Docker network. You have to give the network a name and you can use the-dflag to specify which driver creates it.docker network...
Ask