I'm running docker for windows on my windows 10 machine (using hyper-v).
If I run the following commands:
docker volume create test
docker volume inspect test
I get:
[
    {
        "Driver": "local",
        "Labels": {},
        "Mountpoint": "/var/lib/docker/volumes/test/_data",
        "Name": "test",
        "Options": {},
        "Scope": "local"
    }
]
What I want to do is access the path /var/lib/docker/volumes/test/_data from my windows host machine. Is this possible? Maybe by using some other driver instead of local?