Docker / Windows Container: how to mount a host folder as data volume on Windows 2016
On Windows, the paths must be specified using Windows-style semantics. You should not use a leading slash in front of the path.
docker run -v c:\Users\[path]:c:\[containerPath]
Windows 10 Anniversary Update and Windows Server 2016 RTM.
Add a volume:
docker run -d -v my-named-volume:C:\MyNamedVolume testimage:latest
Mount a host directory:
docker run -d -v C:\Temp\123:C:\My\Shared\Dir testimage:latest