Skip to content

Commit 56df62e

Browse files
committed
fix readme #11
1 parent 49d59a0 commit 56df62e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ docker compose build
7777
If you do have a GPU that you wish to use, run the following command:
7878

7979
```
80-
docker compose -f docker-compose-gpu.yml build
80+
docker compose -f docker-compose.gpu.yml build
8181
```
8282

8383
### Running the container
@@ -91,7 +91,7 @@ docker compose up
9191
If you do have a GPU that you wish to use, run the following command:
9292

9393
```
94-
docker compose -f docker-compose-gpu.yml up
94+
docker compose -f docker-compose.gpu.yml up
9595
```
9696

9797
Jupyter will be available in your local browser, on the port specified in your env file - for example

docs/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,16 +134,16 @@ Congratulations! You now have a functioning Docker container that you can use to
134134

135135
## ⚡️ Using a GPU
136136

137-
The default `Dockerfile` and `docker compose.yaml` file assume that you do not want to use a local GPU to train your models. If you do have a GPU that you wish to use (for example, you are using a cloud VM), I have provided two extra files called `Dockerfile-gpu` and `docker-compose-gpu.yaml` files that can be used in place of the default files.
137+
The default `Dockerfile` and `docker compose.yaml` file assume that you do not want to use a local GPU to train your models. If you do have a GPU that you wish to use (for example, you are using a cloud VM), I have provided two extra files called `Dockerfile-gpu` and `docker-compose.gpu.yml` files that can be used in place of the default files.
138138

139139
For example, to build an image that includes support for GPU, use the command shown below:
140140

141141
```
142-
docker compose -f docker-compose-gpu.yml build
142+
docker compose -f docker-compose.gpu.yml build
143143
```
144144

145145
To run this image, use the following command:
146146

147147
```
148-
docker compose -f docker-compose-gpu.yml up
148+
docker compose -f docker-compose.gpu.yml up
149149
```

0 commit comments

Comments
 (0)