pkmital / CADL

ARCHIVED: Contains historical course materials/Homework materials for the FREE MOOC course on "Creative Applications of Deep Learning w/ Tensorflow" #CADL
https://www.kadenze.com/courses/creative-applications-of-deep-learning-with-tensorflow/info
Apache License 2.0
1.48k stars 732 forks source link

Environment Setup: "docker: invalid reference format: repository name must be lowercase." #101

Open leoauri opened 6 years ago

leoauri commented 6 years ago

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