I am using Docker-CE (version 17.09) on Ubuntu 16.04 host. I used docker-machine (version 0.12.2) to create docker machine for running containers.
I am trying out mounting host volume to container. However, the mounted volume is empty inside container, while that folder is not empty on host. This is the command I used:
docker run -p 80:80 -v /home/modeller/ExpressSite:/var/test kitematic/hello-world-nginx
What could be the cause of this issue?
-- Also one side question: does docker have a preference of Mac and Windows OS over Ubuntu OS? I found large number of tutorials for Mac and Windows, but few wrote about Ubuntu OS.