From 497a7d6ba7664f4c2f8b4f29996f963db94cb32d Mon Sep 17 00:00:00 2001 From: qadzek <84473512+qadzek@users.noreply.github.com> Date: Mon, 17 Jun 2024 15:54:01 +0200 Subject: [PATCH] Fix typo --- docs/part-1/section-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/part-1/section-3.md b/docs/part-1/section-3.md index f942ff06..c02a0909 100644 --- a/docs/part-1/section-3.md +++ b/docs/part-1/section-3.md @@ -36,7 +36,7 @@ The third result, `tutum/hello-world`, is marked as "automated". This means that The second result, `kitematic/hello-world-nginx`, is neither an official nor an automated image. We can't know what the image is built from, since its [Docker Hub page](https://hub.docker.com/r/kitematic/hello-world-nginx/) has no links to any repositories. The only thing its Docker Hub page reveals is that the image is 9 years old. Even if the image's "Overview" section had links to a repository, we would have no guarantees that the published image was built from that source. -There are also other Docker registries competing with Docker Hub, such as [Quay](https://quay.io/). By default, `docker search` will only search from Docker Hub, but to a search different registry, you can add the registry address before the search term, for example, `docker search quay.io/hello`. Alternatively, you can use the registry's web pages to search for images. Take a look at the page of [the `nordstrom/hello-world` image on Quay](https://quay.io/repository/nordstrom/hello-world). The page shows the command to use to pull the image, which reveals that we can also pull images from hosts other than Docker Hub: +There are also other Docker registries competing with Docker Hub, such as [Quay](https://quay.io/). By default, `docker search` will only search from Docker Hub, but to search a different registry, you can add the registry address before the search term, for example, `docker search quay.io/hello`. Alternatively, you can use the registry's web pages to search for images. Take a look at the page of [the `nordstrom/hello-world` image on Quay](https://quay.io/repository/nordstrom/hello-world). The page shows the command to use to pull the image, which reveals that we can also pull images from hosts other than Docker Hub: `docker pull quay.io/nordstrom/hello-world`