Compare commits

...

6 Commits

Author SHA1 Message Date
Michel Roux 0cbc8254ab Oops 2017-02-07 10:46:44 +01:00
Michel Roux 2155194f6d Find another way 2017-02-07 10:44:55 +01:00
Michel Roux ef6f582b5a Fix my poor JS knowledge 2017-02-07 10:39:08 +01:00
Michel Roux e5e3f94956 Add command to fix symlink 2017-02-07 10:36:21 +01:00
Vincent Weevers dcf4601159 0.0.4 2016-07-15 12:36:08 +02:00
Vincent Weevers 1299f5b071 fix node version typo (0.4.0) 2016-07-15 12:36:03 +02:00
2 changed files with 6 additions and 2 deletions

View File

@ -162,6 +162,10 @@ class Shares {
else this.vm.addShare(name, hostPath, opts, next)
},
(next) => {
this.vm.command(['setextradata', 'default', 'VBoxInternal2/SharedFoldersEnableSymlinksCreate/' + name, '1'], next)
},
(next) => {
this.getFilesystem(name, (err, fs) => {
if (err) return next(err)

View File

@ -1,6 +1,6 @@
{
"name": "docker-share",
"version": "0.0.3",
"version": "0.0.4",
"description": "Share local folders with a Docker Machine VM",
"license": "MIT",
"bin": "bin.js",
@ -23,7 +23,7 @@
"share"
],
"engines": {
"node": ">=0.4.0",
"node": ">=4.0.0",
"npm": ">=2.0.0"
},
"repository": "vweevers/node-docker-share",