0 votes
in Docker by
What is the purpose of a What is the purpose of a Docker volume?

A) To store persistent data outside of the container file system

B) To store temporary data inside the container file system

C) To manage network traffic between containers

D) To manage container configuration and settings?

A) To store persistent data outside of the container file system

B) To store temporary data inside the container file system

C) To manage network traffic between containers

D) To manage container configuration and settings

1 Answer

0 votes
by

Solution:A

Explanation: A Docker volume is used to store persistent data outside of the container file system. It allows developers to separate data storage from the application code, and makes it easy to backup, restore, and migrate data between containers.

...