Skip to content

Instantly share code, notes, and snippets.

@i-sync
Last active May 28, 2019 08:32
Show Gist options
  • Select an option

  • Save i-sync/7d60136088c1a53df2f9800a2b48a3f1 to your computer and use it in GitHub Desktop.

Select an option

Save i-sync/7d60136088c1a53df2f9800a2b48a3f1 to your computer and use it in GitHub Desktop.
Mount volume doesn't work on Windows 10 using git-bash

Issue Link : docker-archive/toolbox#673 (comment)
I use the workaround described by dsebastien in the issue linked in my previous reply with a small modification to avoid changing the calling shell environment. This is what I use as workaround now, in my ~/.bash_profile on Windows 10, Git Bash:

# Workaround for Docker for Windows in Git Bash.
docker()
{
        (export MSYS_NO_PATHCONV=1; "docker.exe" "$@")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment