Chapter Summary: Docker Networking
Understand Docker networking fundamentals by exploring the Container Network Model, libnetwork, and key network drivers like bridge and overlay. Learn to use docker network commands and native Linux tools to inspect and manage Docker networks effectively.
We'll cover the following...
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...