aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity
diff options
context:
space:
mode:
authorGravatar KOUASSI Konan Jean-Claude <apj_jeanclaude@yahoo.fr>2017-01-16 18:16:17 +0000
committerGravatar drpngx <drpngx@users.noreply.github.com>2017-01-16 10:16:17 -0800
commit22c0ff42cab84734e8cce1fbcbc2a4ce33968e76 (patch)
treee0a13645d6fd4aacb8507d497762b91cb2f4d07b /tensorflow/examples/udacity
parent9830ed87d46245a72a9d0c2dce854e6732c5542a (diff)
docs: add a troubleshooting section to the faq (#6368)
docs: add a troubleshooting section to the faq Sometimes we could have an issue with a running docker, specifically with the TLS certificate. It is important for a beginner to be aware of that.
Diffstat (limited to 'tensorflow/examples/udacity')
-rw-r--r--tensorflow/examples/udacity/README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/tensorflow/examples/udacity/README.md b/tensorflow/examples/udacity/README.md
index 6e40c3bae6..143a75a3e9 100644
--- a/tensorflow/examples/udacity/README.md
+++ b/tensorflow/examples/udacity/README.md
@@ -54,6 +54,15 @@ to get the ip of the new virtual machine. To switch from default virtual machine
Note that `docker-machine env tensorflow` outputs some environment variables such like `DOCKER_HOST`. Then your docker client is now connected to the docker host in virtual machine `tensorflow`
+* **I'm getting a TLS connection error.**
+
+If you get an error about the TLS connection of your docker, run the command below to confirm the problem.
+
+ docker-machine ip tensorflow
+
+Then if it is the case use the instructions on [this page](https://docs.docker.com/toolbox/faqs/troubleshoot/) to solve the issue.
+
+
* **I'm getting the error - docker: Cannot connect to the Docker daemon. Is the docker daemon running on this host? - when I run 'docker run'.**
This is a permissions issue, and a popular answer is provided for Linux and Max OSX [here](http://stackoverflow.com/questions/21871479/docker-cant-connect-to-docker-daemon) on StackOverflow.