I am using the latest Docker public beta on Windows 10.
I am developing a Node.js app and I am using Docker with my src directory mounted as a volume in a container.
I cannot run npm install
from inside the container because it will cause the creation of symbolic links (in the node_modules directory), that apparently are not supported in volumes if the host is Windows.
Is there anything I can do to solve this problem?
I have no issues on running this in a Linux environment.
After some research I found many solutions involving Virtualbox, being for the "old" version of Docker (Docker Toolbox).