You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the path contains spaces, then docker run -it -p 8888:8888 -p 6006:6006 -v /$(pwd)/session-1:/notebooks --name tf cadl /bin/bash
might throw the error docker: invalid reference format: repository name must be lowercase.
or behave unexpectedly.
Wrapping in quotation marks solves this: docker run -it -p 8888:8888 -p 6006:6006 -v "/$(pwd)/session-1":/notebooks --name tf cadl /bin/bash
The text was updated successfully, but these errors were encountered:
If the path contains spaces, then
docker run -it -p 8888:8888 -p 6006:6006 -v /$(pwd)/session-1:/notebooks --name tf cadl /bin/bash
might throw the error
docker: invalid reference format: repository name must be lowercase.
or behave unexpectedly.
Wrapping in quotation marks solves this:
docker run -it -p 8888:8888 -p 6006:6006 -v "/$(pwd)/session-1":/notebooks --name tf cadl /bin/bash
The text was updated successfully, but these errors were encountered: