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
In the readme, the command docker run -it --rm -p 8888:8888 -v %CD%/notebooks/:/mnt/notebooks/ mimoralea/gdrl:v0.14 did not work for me in PowerShell.
docker run -it --rm -p 8888:8888 -v %CD%/notebooks/:/mnt/notebooks/ mimoralea/gdrl:v0.14
However I was able to get it to work with a slight modification:
docker run -it --rm -p 8888:8888 -v "$(pwd)/notebooks/:/mnt/notebooks/" mimoralea/gdrl:v0.14
Found solution here: https://stackoverflow.com/questions/46526165/docker-invalid-characters-for-volume-when-using-relative-paths
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the readme, the command
docker run -it --rm -p 8888:8888 -v %CD%/notebooks/:/mnt/notebooks/ mimoralea/gdrl:v0.14
did not work for me in PowerShell.However I was able to get it to work with a slight modification:
Found solution here: https://stackoverflow.com/questions/46526165/docker-invalid-characters-for-volume-when-using-relative-paths
The text was updated successfully, but these errors were encountered: