Complete the command to create a custom bridge network named 'my_bridge'.
docker network [1] my_bridgeThe docker network create command is used to create a new network. Here, it creates a custom bridge network named 'my_bridge'.
Complete the command to list all Docker networks including the custom bridge networks.
docker network [1]The docker network ls command lists all Docker networks, including custom bridge networks.
Fix the error in the command to create a custom bridge network with a specific subnet.
docker network create --driver bridge --subnet [1] my_custom_netThe subnet must be a valid CIDR block. '192.168.1.0/24' is correct. The others are invalid IP ranges or missing mask.
Fill both blanks to create a custom bridge network named 'dev_net' with a gateway IP of 172.18.0.1.
docker network create --driver [1] --subnet 172.18.0.0/16 --gateway [2] dev_net
The driver for a custom bridge network is 'bridge'. The gateway IP must be a valid IP address like '172.18.0.1'.
Fill all three blanks to create a custom bridge network named 'test_net' with subnet 10.10.0.0/16 and gateway 10.10.0.1.
docker network create --driver [1] --subnet [2] --gateway [3] test_net
Use 'bridge' as the driver for custom bridge networks. The subnet and gateway must be valid IP ranges and addresses.