Skip to content

Commit 2c81b04

Browse files
authored
Merge pull request #2315 from ChamathKB/documentation-fixes
updating docker tag to latest in playbook
2 parents fcec06b + 8909217 commit 2c81b04

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/playbook/ENVIRONMENT.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ As you become more proficient with using 🐸STT, you can use the pre-built Dock
159159
**Running this command will download several gigabytes of data. Do not perform this command if you are on a limited or metered internet connection**
160160

161161
```
162-
$ docker pull ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4
163-
v0.10.0-alpha.4: Pulling from coqui-ai/stt-train
162+
$ docker pull ghcr.io/coqui-ai/stt-train:latest
163+
latest: Pulling from coqui-ai/stt-train
164164
Digest: sha256:0f8ee9208874a925618e527f1d06ea9065dd09c700972cba740884e7e7e4cd17
165-
Status: Image is up to date for ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4
166-
ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4
165+
Status: Image is up to date for ghcr.io/coqui-ai/stt-train:latest
166+
ghcr.io/coqui-ai/stt-train:latest
167167
```
168168

169169
<!-- FIXME uncomment once we have CI publishing of these images:
@@ -175,17 +175,17 @@ You will now see the `ghcr.io/coqui-ai/stt-train` image when you run the command
175175
```
176176
$ docker image ls
177177
REPOSITORY TAG IMAGE ID CREATED SIZE
178-
ghcr.io/coqui-ai/stt-train v0.10.0-alpha.4 d145cb0930ea 37 minutes ago 5.12GB
178+
ghcr.io/coqui-ai/stt-train latest e1ab9313051d 37 minutes ago 5.12GB
179179
``` -->
180180

181181
### Testing the image by creating a container and running a script
182182

183183
Now that you have your Docker image pulled down, you can create a _container_ from the image. Here, we're going to create a container and run a simple test to make sure that the image is working correctly.
184184

185-
_Note that you can refer to Docker images by `id` - such as `7cdc0bb1fe2a` in the example above, or by the image's name and `tag`. Here, we will be using the image name and `tag` - ie `ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4`._
185+
_Note that you can refer to Docker images by `id` - such as `e1ab9313051d` in the example above, or by the image's name and `tag`. Here, we will be using the image name and `tag` - ie `ghcr.io/coqui-ai/stt-train:latest`._
186186

187187
```
188-
$ docker run -it --name stt-test --entrypoint /bin/bash ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4
188+
$ docker run -it --name stt-test --entrypoint /bin/bash ghcr.io/coqui-ai/stt-train:latest
189189
```
190190

191191
The `entrypoint` instruction following `docker run` tells Docker to run the `/bin/bash` (ie shell) after creating the container.
@@ -282,7 +282,7 @@ As you become more comfortable training speech recognition models with 🐸STT,
282282
# Custom Dockerfile for training models using 🐸STT
283283
284284
# Get the latest 🐸STT image
285-
FROM ghcr.io/coqui-ai/stt-train:v0.10.0-alpha.4
285+
FROM ghcr.io/coqui-ai/stt-train:latest
286286
287287
# Install nano editor
288288
RUN apt-get -y update && apt-get install -y nano

0 commit comments

Comments
 (0)