šŸ’¾

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
persistent data