Hello,
I feel like a noob not finding a solution for this but the documentation is not really complete : http://docs.rancher.com/os/under-the-hood/directories/
I have one disk with my system and images, and i need to store the data in a separate disk.
mkdir /opt/bigdisk
sudo mount /dev/sdb /opt/bigdisk
docker run -d -v /opt/bigdisk/files:/data debian
from my debian container i don’t see the content of my disk but the content of the directory as it was not mounted.
I guess i need to mount in one of the system docker but wich one ? how do i make this persistent ?
Thanks for your help !