Skip to content
alex-litvak edited this page Nov 25, 2015 · 1 revision

Troubleshooting

Please note the following:

The Linux VM in the VirtualBox maps the c/Users directory in the VM instance to the C:\Users folder in Windows. So be sure your source code for your worker is in a folder under C:\Users, then cd to that folder in the context of the VM (in Docker terminal) and run it from there.

Specifying paths in docker commands

Sometimes the Docker Terminal tool cannot recognize properly the paths given to docker commands as arguments. Assume you're creating a bind mount by -v option:

docker run --rm -v "$PWD":/worker-w /worker IMAGE [COMMAND]

In case of invalid path error you should retry the above command with additional "/" signes:

docker run --rm -v "//$PWD":/worker -w //worker IMAGE [COMMAND]
Clone this wiki locally