Docker toolbox 1.9.1 on Windows 7 platform
The data container I created doesn't have volumes when I use docker inspect command.
$ sudo mkdir /abc
$ docker run -d --name data -v /abc:/hostabc busybox true
$ docker inspect --format "{{ .Config.Volumes }}" data
map[]
I also tried this in 1.7.1, it shows like below
$ docker inspect --format "{{ .Volumes }}" data   # in 1.7.1 it is Volumes directly
map[/hostabc:/abc]
Anything I did wrong to create the data container ?
Or there are other place to check the volumes in data container.