I am using Docker version 18.09.2 on windows 10. I want to mount a folder into linux container using command
docker run -it -v C:\work:/mnt/data/work ubuntu bash
when in new console I check the container by using command
docker inspect new_Created_Container_Name
This is the result :
"Mounts": [
{
"Type": "bind",
"Source": "/host_mnt/c/work",
"Destination": "/mnt/data/work",
"Mode": "",
"RW": true,
"Propagation": "rprivate"
}
I believe that changing somehow the propagation value from rprivate to shared would solve the problem. Is there easy way to achieve that ??