0 votes
in Docker by

What is the difference between a Docker volume and a Docker bind mount?

A) A Docker volume is managed by Docker, while a bind mount is managed by the host operating system.

B) A Docker volume is more secure than a bind mount.

C) A Docker volume is faster than a bind mount.

D) A Docker volume is used for temporary data, while a bind mount is used for persistent data)

1 Answer

0 votes
by

Solution:A

Explanation: A Docker volume is managed by Docker, which means that it can be easily backed up, restored, and migrated between containers. A bind mount is managed by the host operating system, which means that it is less secure and less portable than a Docker volume.

...