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 named 'my_net'.
Fix the error in the command to check running containers' network settings.
docker container [1]The docker container inspect command shows detailed info about a container, including network settings.
Fill both blanks to create a network and connect a container named 'webapp' to it.
docker network [1] my_net && docker network [2] my_net webapp
First, create the network with create. Then connect the container with connect.
Fill all three blanks to list containers, find the container ID of 'db', and inspect its network info.
docker ps -q --filter name=[1] | xargs docker container [2] [3]
Filter containers by name 'db', then inspect that container's details.