Docker Toolbox (Windows): invalid volume specification
问题 Configration Using Windows 10, Docker Toolbox ( not native Docker, to be able to use VMs). Background There is a Python (2.7) script that is supposed to run a Docker container. The code looks like this: self.docker.containers.run('container_name', command='bash -c "%s"' % command, volumes={PROJECT_PATH: {'bind': '/shared', 'mode': 'rw'}}, working_dir='/shared', remove=True, **kwargs) Problem Trying to run the script: * Building the DummyProbe docker image * Running the DummyProbe container