Q. Which of the following is a valid way to mount a volume inside a container?
β
Correct Answer: (A)
docker run -v /app:/data nginx
Explanation: The `-v` or `--mount` flags are used to mount volumes.