Valid 701-100 Dumps shared by ExamDiscuss.com for Helping Passing 701-100 Exam! ExamDiscuss.com now offer the newest 701-100 exam dumps, the ExamDiscuss.com 701-100 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 701-100 dumps with Test Engine here:
Which of the statements below are true about the volume created by the following command? (Choose two correct answers.) docker run -v /data -ti debian
Correct Answer: D,E
The correct answers to the question "Which of the statements below are true about the volume created by the following command? docker run -v /data -ti debian" are: D). The /data volume can be attached to another Docker container.E. If the command is run a second time, another volume for /data is created. When you run docker run -v /data -ti debian, Docker creates a volume for /data inside the container. This volume can be managed in the following ways: * Volume Attachment: Volumes are designed to be shared between containers. The volume /data can be attached to other Docker containers, allowing them to read from and write to the same data store. * Multiple Volumes: If you run the command again, Docker will create a new volume for /data, as volumes are specific to the container instance unless explicitly shared. The other options are incorrect: * A: The new volume does not contain a copy of the complete container's base image; it is an empty volume. * B: The volume containing the container's root filesystem is not retained until the /data volume is deleted. * C: Volumes are persistent and are not discarded when the container terminates unless explicitly removed. References: * Docker Documentation - Manage Data in Containers