File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -92,11 +92,12 @@ function getBindPath(servicePath) {
92
92
throw new Error ( `Unknown path format ${ baseBindPath . substr ( 10 ) } ...` ) ;
93
93
}
94
94
95
- bindPaths . push ( `/${ drive . toLowerCase ( ) } /${ path } ` ) ;
95
+ bindPaths . push ( `/${ drive . toLowerCase ( ) } /${ path } ` ) ; // Docker Toolbox (seems like Docker for Windows can support this too)
96
+ bindPaths . push ( `${ drive . toLowerCase ( ) } :/${ path } ` ) ; // Docker for Windows
97
+ // other options just in case
96
98
bindPaths . push ( `/${ drive . toUpperCase ( ) } /${ path } ` ) ;
97
99
bindPaths . push ( `/mnt/${ drive . toLowerCase ( ) } /${ path } ` ) ;
98
100
bindPaths . push ( `/mnt/${ drive . toUpperCase ( ) } /${ path } ` ) ;
99
- bindPaths . push ( `${ drive . toLowerCase ( ) } :/${ path } ` ) ;
100
101
bindPaths . push ( `${ drive . toUpperCase ( ) } :/${ path } ` ) ;
101
102
102
103
for ( let i = 0 ; i < bindPaths . length ; i ++ ) {
You can’t perform that action at this time.
0 commit comments