Using Volumes
In this lesson, you will learn how to use volumes to prevent data loss.
We'll cover the following...
When a container writes files, it writes them inside of the container. Which means that when the container dies (the host machine restarts, the container is moved from one node to another in a cluster, it simply fails, etc.) all of that data is lost. It also means that if you run the same container several times in a ...