I can confirm this issue. I am a Windows 10 user and I’ve just upgraded the system to Redstone.
I’ve spent the entire afternoon trying to get it work.
My case is super easy: get an Nginx running on Ubuntu to serve files that reside on Windows.
I have tried everything from -v c:/Users/website:/var/www/html/website to -v /c/Users/website:/var/www/html/website
Using docker inspect I can verify the mount is there:
“Mounts”: [
{
“Source”: “/c/Users/website”,
“Destination”: “/var/www/html/website”,
“Mode”: “”,
“RW”: true,
“Propagation”: “rprivate”
}
],
This is my very first time to this forum.
One minute later, I’ve found the reason why it doesn’t work: you need to implicitly give privileges to docker in order for it to have the proper rights to get access your drives. FYI: Volume mounts in windows does not work