Skip to content

Commit 716525e

Browse files
authored
changed readme to add dockerfiles in build
1 parent a40a2b1 commit 716525e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ If you want to build a GPU or CPU-based Docker image of your own, you can use th
4747
3. After cloning the repo to your machine, enter
4848
4949
```
50-
docker build -t <image_name> ./dockerfiles/
50+
docker build -t showandtell_<image_type> -f ./dockerfiles/Dockerfile.<image_type> ./dockerfiles/
5151
```
5252
53-
where `<image_name>` is either `gpu` or `cpu`. (Note that, in order to run these files on your GPU, you'll need to have a compatible GPU, with drivers installed and configured properly [as described in TensorFlow's documentation](https://www.tensorflow.org/install/).)
53+
where `<image_type>` is either `gpu` or `cpu`. (Note that, in order to run these files on your GPU, you'll need to have a compatible GPU, with drivers installed and configured properly [as described in TensorFlow's documentation](https://www.tensorflow.org/install/).)
5454
5555
4. Run the Docker image by entering
5656
5757
```
58-
docker run -it -p 8888:8888 -v <path to repo>:/root <image_name>
58+
docker run -it -p 8888:8888 -v <path to repo>:/root showandtell_<image_type>
5959
```
6060
61-
where `<image_name>` is either `gpu` or `cpu`, depending on the image you built in the last step.
61+
where `<image_type>` is either `gpu` or `cpu`, depending on the image you built in the last step.
6262
6363
5. After building, starting, and attaching to the appropriate Docker container, run the provided Jupyter notebooks by entering
6464

0 commit comments

Comments
 (0)