Search⌘ K

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...

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 ...