We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using docker-compose under windows to start the application, the following error occurs:
Invalid bind mount spec "<my path>:/data/db/rw": Invalid volume specification: '<my path>:/data/db:rw'
There might be a fix at docker/compose#4274
The text was updated successfully, but these errors were encountered:
Seems like running setx COMPOSE_CONVERT_WINDOWS_PATHS 0 works (at least with the latest RC version of docker-compose.
setx COMPOSE_CONVERT_WINDOWS_PATHS 0
Sorry, something went wrong.
And also one needs to comment out the volumes section in the mongo service: docker-library/mongo#74
volumes
mongo
..and you need to run docker-machine ip default to get the ip to which to connect :)
docker-machine ip default
Remove volume binding to help our poor Windows users #245
311339e
Remove volume binding to help our poor Windows users electricitymaps#245
abe9d15
No branches or pull requests
When using docker-compose under windows to start the application, the following error occurs:
There might be a fix at docker/compose#4274
The text was updated successfully, but these errors were encountered: