Skip to content

Commit

Permalink
fix: quote volume bind properly for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
anacierdem committed Oct 20, 2024
1 parent 0627c23 commit f4162be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/actions/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ const initContainer = async (libdragonInfo) => {
'run',
'-d', // Detached
'--mount',
'type=bind,source=' +
'"type=bind,source=' +
libdragonInfo.root +
',target=' +
CONTAINER_TARGET_PATH, // Mount files
CONTAINER_TARGET_PATH +
'"', // Mount files
'-w=' + CONTAINER_TARGET_PATH, // Set working directory
libdragonInfo.imageName,
'tail',
Expand Down

0 comments on commit f4162be

Please sign in to comment.