Complete the command to list all Docker networks.
docker network [1]The docker network ls command lists all Docker networks on your system.
Complete the command to inspect details of a Docker network named 'my_net'.
docker network [1] my_netThe docker network inspect my_net command shows detailed information about the network 'my_net'.
Fix the error in the command to ping a container named 'webapp' from the 'client' container.
docker exec [1] client ping webappThe docker exec -it client ping webapp command uses the -it option to allow interactive terminal access to run the ping command inside the 'client' container.
Fill both blanks to create a Docker network named 'test_net' with a specific driver.
docker network [1] test_net --driver [2]
Use docker network create to make a new network, and bridge is a common driver for local networks.
Fill all three blanks to disconnect a container named 'db' from a network named 'backend_net'.
docker network [1] [2] [3]
The command docker network disconnect backend_net db removes the container 'db' from the 'backend_net' network.