Debug School

Nilasish Chakraborty
Nilasish Chakraborty

Posted on

Day3 - How can we store container data in memory using docker volume

When we create a volume, it gets created in the local environment. When we run the container, the same file gets stored in the tmpfs and when the container is stopped, the tmpfs goes away and we can see the file in the local FS. So, In short, we can use the Docker's tmpfs feature to store container data in memory using docker volume.

Top comments (0)