Correct Answer: B
The command docker container logs nginx -volumes will not display a list of volumes for a specific container. The docker container logs command shows the logs of a container, which are usually the standard output and standard error of the main process running in thecontainer1. The -volumes flag is not a valid option for this command, and will result in an error message2. To display a list of volumes for a specific container, you can use the docker inspect command with a filter option, such as docker inspect -f '{{ .Mounts }}' nginx3. This will show the source, destination, mode, type, and propagation of each volumemounted in the container4. Reference: docker container logs, docker container logs nginx -volumes, docker inspect, docker inspect -f '{{ .Mounts }}' nginx