š¾
Volumes & Persistence
Persisting data beyond the container lifecycle
Step 1 of 3
Why Volumes?
Container filesystems are ephemeral ā when you remove a container, all data inside it is gone. Volumes persist data outside the container, on the host.
bash
docker run -v my_data:/data ubuntuš
Containerš¾Volume