Complete the command to create a Docker volume named mydata.
docker volume [1] mydataThe docker volume create command creates a new volume. Here, mydata is the volume name.
Complete the command to list all Docker volumes on your system.
docker volume [1]The docker volume ls command lists all volumes available on your system.
Fix the command to remove a Docker volume named olddata.
docker volume [1] olddataThe docker volume rm command removes a volume. Here, olddata is the volume to delete.
Fill both blanks to inspect details of a Docker volume named myvolume.
docker volume [1] [2]
The command docker volume inspect myvolume shows detailed information about the volume named myvolume.
Fill all three blanks to run a container named webapp that uses a volume named data_vol mounted at /app/data.
docker run -d --name [1] -v [2]:[3] nginx
This command runs a container named webapp using the volume data_vol mounted inside the container at /app/data. The -v option connects the volume to the container path.