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

A) To create and manage Docker volumes

B) To manage Docker images

C) To manage Docker containers

D) To manage Docker networks

1 Answer

0 votes
by

Answer: A

Explanation: Docker volume is a command for creating and managing Docker volumes, which are used for persistent data storage between containers. Volumes can be used to share data between containers or to store data that needs to persist even when a container is stopped or removed

...