You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.
bash.exe"-3.1$ docker run --rm -it -v $(pwd):"/workspace" denisura/phpmd
invalid value "d:\\;C:\\Program Files (x86)\\Git\\workspace" for flag -v: bad mount mode specifie
d : \Program Files (x86)\Git\workspace
See 'c:\Program Files\Docker Toolbox\docker.exe run --help'.
bash.exe"-3.1$ docker run --help
Take note C:\\Program Files (x86)\\Git is where bash is so workspace is being appended to my bash location.
The text was updated successfully, but these errors were encountered:
@bweston92 Does that help? Unfortunately this is more of a docker issue. I will pass it on to the rest of the Docker team. The Toolbox worked as an installer to get Docker started.
@austin881 double-slash work around seems incomplete:
no error report when running docker run, however files in my workspace disappear in workspace in container
test code:
mkdir -p /c/testdir
cd /c/testdir
touch hello.txt
docker run -it -v //c/testdir:/home/testdir ubuntu bash
cd /home/testdir
ls
no hello.txt file exists
touch world.txt
exit
ls
no world.txt found!
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Related to dduportal-dockerfiles/docker-compose#16
Take note
C:\\Program Files (x86)\\Git
is where bash is soworkspace
is being appended to my bash location.The text was updated successfully, but these errors were encountered: