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
Hello,
I followed instructions set here: https://gangcaolab.github.io/CoolBox/installation.html#docker
There is a change : $(pwd) to %cd% Old code, doesn't work : $ docker run -ti -v $(pwd):/data -p 9000:8888 nanguage/coolbox:latest
$ docker run -ti -v $(pwd):/data -p 9000:8888 nanguage/coolbox:latest
New code, works: docker run --rm -it -v %cd%:/opt -w /opt michaelbrooks/node npm i vuepress
docker run --rm -it -v %cd%:/opt -w /opt michaelbrooks/node npm i vuepress
Thanks, Sangram
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I followed instructions set here:
https://gangcaolab.github.io/CoolBox/installation.html#docker
There is a change : $(pwd) to %cd%
Old code, doesn't work :
$ docker run -ti -v $(pwd):/data -p 9000:8888 nanguage/coolbox:latest
New code, works:
docker run --rm -it -v %cd%:/opt -w /opt michaelbrooks/node npm i vuepress
Thanks,
Sangram
The text was updated successfully, but these errors were encountered: