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 the network named 'bridge'.
docker network [1] bridgeThe docker network inspect command shows detailed information about a specific network.
Fix the error in the command to inspect a container's network settings by container ID 'abc123'.
docker container [1] abc123The correct command to see detailed info about a container, including network settings, is docker container inspect.
Fill both blanks to complete the command that filters network inspect output to show only the container's IP address.
docker network inspect bridge --format '{{{{.Containers.[1].[2]'
The --format option uses Go templates. To get the IP address of container 'abc123', use .Containers.abc123.IPv4Address.
Fill all three blanks to complete the command that shows the network mode of a container named 'webapp'.
docker inspect --format='{{{{.[1].[2]' [3]
The network mode is found under HostConfig.NetworkMode in the container's inspect data. The container name is 'webapp'.