Complete the command to create a custom Docker network named 'mynetwork'.
docker network [1] mynetworkThe docker network create command is used to create a new custom network in Docker.
Complete the command to run a container named 'webapp' attached to the custom network 'mynetwork'.
docker run --name webapp --network [1] nginxTo connect a container to a custom network, use the network's name with the --network option.
Fix the error in the command to inspect the custom network 'mynetwork'.
docker network [1] mynetworkThe docker network inspect command shows details about a specific network.
Fill both blanks to create a custom bridge network with a specific subnet.
docker network create --driver [1] --subnet [2]/24 customnet
Custom bridge networks use the 'bridge' driver and you specify the subnet with the IP range.
Fill both blanks to connect a running container 'db' to the custom network 'customnet' with alias 'database'.
docker network [1] --alias [2] customnet db
Use docker network connect to add a container to a network. Specify the container name and alias.