random-forests / tensorflow-workshop

Slides and code from our TensorFlow workshop.
Apache License 2.0
720 stars 309 forks source link

fixed missing flag for publishing port 6006 in docker run step #11

Closed aloosley closed 7 years ago

aloosley commented 7 years ago

docker run -it -p 8888:8888 p 6006:6006 tensorflow/tensorflow bash searches for docker image p. I updated the p to -p so that the container publishes port 6006 as desired.

random-forests commented 7 years ago

Thank you!