aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/dockerfiles
diff options
context:
space:
mode:
authorGravatar Jonathan Homer <jhomer@jasoftware.com>2018-09-08 13:52:04 +0100
committerGravatar GitHub <noreply@github.com>2018-09-08 13:52:04 +0100
commitf40c960fff788b6770b9b4015734e54604f7481b (patch)
treed8d40c4a46ea24ec6fcd1609cb8d2449aa3a5357 /tensorflow/tools/dockerfiles
parentbfead6061a6f10c5a3e5d05f8a946443fb9a3218 (diff)
Changed PWD to pwd for bash examples
Shell command PWD should be lowercase pwd for it work correct. Obvious typo corrected.
Diffstat (limited to 'tensorflow/tools/dockerfiles')
-rw-r--r--tensorflow/tools/dockerfiles/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/tools/dockerfiles/README.md b/tensorflow/tools/dockerfiles/README.md
index d64db35afb..5996573cf1 100644
--- a/tensorflow/tools/dockerfiles/README.md
+++ b/tensorflow/tools/dockerfiles/README.md
@@ -34,13 +34,13 @@ documentation](https://docs.docker.com/engine/reference/run/).
# User permissions (-u) are required if you use (-v).
# CPU-based images
-$ docker run -u $(id -u):$(id -g) -v $(PWD):/my-devel -it tf
+$ docker run -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf
# GPU-based images (set up nvidia-docker2 first)
-$ docker run --runtime=nvidia -u $(id -u):$(id -g) -v $(PWD):/my-devel -it tf
+$ docker run --runtime=nvidia -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf
# Images with Jupyter run on port 8888, and needs a volume for notebooks
-$ docker run --user $(id -u):$(id -g) -p 8888:8888 -v $(PWD):/notebooks -it tf
+$ docker run --user $(id -u):$(id -g) -p 8888:8888 -v $(pwd):/notebooks -it tf
```
These images do not come with the TensorFlow source code -- but the development