InterviewSolution
Saved Bookmarks
| 1. |
What is a Volume in docker? |
|
Answer» A data volume is a specially-designated directory that is located outside of the root filesystem of a container (i.e. CREATED on the host), DESIGNED to persist data, independent of the container’s life cycle. This allows SHARING data within containers by IMPORTING volume directory in other containers. Data VOLUMES provide several useful features:
|
|