Skip to content

Commit 1996739

Browse files
authored
Merge pull request #23648 from dvdksn/fix-hub-filter-links
fix: update links to docker hub trusted content categories
2 parents 3ae3631 + 5ec771e commit 1996739

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

content/get-started/docker-concepts/the-basics/what-is-an-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ These two principles let you to extend or add to existing images. For example, i
3232

3333
Docker Hub provides a variety of Docker-supported and endorsed images known as Docker Trusted Content. These provide fully managed services or great starters for your own images. These include:
3434

35-
- [Docker Official Images](https://hub.docker.com/search?q=&type=image&image_filter=official) - a curated set of Docker repositories, serve as the starting point for the majority of users, and are some of the most secure on Docker Hub
36-
- [Docker Verified Publishers](https://hub.docker.com/search?q=&image_filter=store) - high-quality images from commercial publishers verified by Docker
37-
- [Docker-Sponsored Open Source](https://hub.docker.com/search?q=&image_filter=open_source) - images published and maintained by open-source projects sponsored by Docker through Docker's open source program
35+
- [Docker Official Images](https://hub.docker.com/search?badges=official) - a curated set of Docker repositories, serve as the starting point for the majority of users, and are some of the most secure on Docker Hub
36+
- [Docker Verified Publishers](https://hub.docker.com/search?badges=verified_publisher) - high-quality images from commercial publishers verified by Docker
37+
- [Docker-Sponsored Open Source](https://hub.docker.com/search?badges=open_source) - images published and maintained by open-source projects sponsored by Docker through Docker's open source program
3838

3939
For example, [Redis](https://hub.docker.com/_/redis) and [Memcached](https://hub.docker.com/_/memcached) are a few popular ready-to-go Docker Official Images. You can download these images and have these services up and running in a matter of seconds. There are also base images, like the [Node.js](https://hub.docker.com/_/node) Docker image, that you can use as a starting point and add your own files and configurations.
4040

content/get-started/introduction/build-and-push-first-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In [Develop with containers](develop-with-containers.md), you used the following
4040
- [phpmyadmin](https://hub.docker.com/_/phpmyadmin) - provides phpMyAdmin, a web-based interface to the MySQL database
4141
- [traefik](https://hub.docker.com/_/traefik) - provides Traefik, a modern HTTP reverse proxy and load balancer that routes requests to the appropriate container based on routing rules
4242

43-
Explore the full catalog of [Docker Official Images](https://hub.docker.com/search?image_filter=official&q=), [Docker Verified Publishers](https://hub.docker.com/search?q=&image_filter=store), and [Docker Sponsored Open Source Software](https://hub.docker.com/search?q=&image_filter=open_source) images to see more of what there is to run and build on.
43+
Explore the full catalog of [Docker Official Images](https://hub.docker.com/search?badges=official), [Docker Verified Publishers](https://hub.docker.com/search?badges=verified_publisher), and [Docker Sponsored Open Source Software](https://hub.docker.com/search?badges=open_source) images to see more of what there is to run and build on.
4444

4545
## Try it out
4646

content/manuals/build/building/best-practices.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ The first step towards achieving a secure image is to choose the right base
4545
image. When choosing an image, ensure it's built from a trusted source and keep
4646
it small.
4747

48-
- [Docker Official Images](https://hub.docker.com/search?image_filter=official)
48+
- [Docker Official Images](https://hub.docker.com/search?badges=official)
4949
are a curated collection that have clear documentation, promote best
5050
practices, and are regularly updated. They provide a trusted starting point
5151
for many applications.
5252

53-
- [Verified Publisher](https://hub.docker.com/search?image_filter=store) images
53+
- [Verified Publisher](https://hub.docker.com/search?badges=verified_publisher) images
5454
are high-quality images published and maintained by the organizations
5555
partnering with Docker, with Docker verifying the authenticity of the content
5656
in their repositories.
5757

58-
- [Docker-Sponsored Open Source](https://hub.docker.com/search?image_filter=open_source)
58+
- [Docker-Sponsored Open Source](https://hub.docker.com/search?badges=open_source)
5959
are published and maintained by open source projects sponsored by Docker
6060
through an [open source program](../../docker-hub/image-library/trusted-content.md#docker-sponsored-open-source-software-images).
6161

content/manuals/build/concepts/dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ use this notation to name your images. There are many public images you can
148148
leverage in your projects, by importing them into your build steps using the
149149
Dockerfile `FROM` instruction.
150150

151-
[Docker Hub](https://hub.docker.com/search?image_filter=official&q=&type=image)
151+
[Docker Hub](https://hub.docker.com/search?badges=official)
152152
contains a large set of official images that you can use for this purpose.
153153

154154
### Environment setup

content/manuals/docker-hub/repos/manage/trusted-content/dsos-program.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ aliases:
77
- /trusted-content/dsos-program/
88
---
99

10-
[Docker-Sponsored Open Source images](https://hub.docker.com/search?q=&image_filter=open_source) are published and maintained by open-source projects sponsored by Docker through the program.
10+
[Docker-Sponsored Open Source images](https://hub.docker.com/search?badges=open_source) are published and maintained by open-source projects sponsored by Docker through the program.
1111

1212
Images that are part of this program have a special badge on Docker Hub making it easier for users to identify projects that Docker has verified as trusted, secure, and active open-source projects.
1313

content/manuals/docker-hub/repos/manage/trusted-content/dvp-program.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ toc_max: 2
1818
---
1919

2020
[The Docker Verified Publisher
21-
Program](https://hub.docker.com/search?q=&image_filter=store) provides
21+
Program](https://hub.docker.com/search?badges=verified_publisher) provides
2222
high-quality images from commercial publishers verified by Docker.
2323

2424
These images help development teams build secure software supply chains,

0 commit comments

Comments
 (0)