I just started a project with meteor on Docker. When it runs meteor
after meteor npm install
it gives this error
[[[[[ /var/app ]]]]]
=> Started proxy.
/root/.meteor/packages/meteor-tool/.1.4.1_1.139xb76++os.linux.x86_64+web.browser+web.cordova/mt-os.linux.x86_64/isopackets/ddp/npm/node_modules/meteor/promise/node_modules/meteor-promise/promise_server.js:165
throw error;
^
Error: EPROTO: protocol error, symlink '/root/.meteor/packages/meteor-tool/.1.4.1_1.139xb76++os.linux.x86_64+web.browser+web.cordova/mt-os.linux.x86_64/dev_bundle/server-lib/node_modules' -> '/var/app/.meteor/local/.build677392.build/programs/.build850480.server/node_modules'
at Error (native)
For the record I am running docker through virtualbox on my Win 10. It seems the problem is about failing creating symlinks, but I have installed the same virtualbox expansion pack version and symbolic for shared folders already enabled on my virtualbox. What other possibilities cause the issue?
UPDATE
As in this suggestion to put --no-bin-links
to meteor npm install
doesn't have any effect.