File: content/manuals/docker-hub/usage/pulls.md
Issue
The note before the "View pull rate and limit" instructions lists incorrect prerequisites:
To check your limits, you need curl, grep, and jq installed.
However, the actual commands shown in the section only use curl and jq. The grep tool is never used in any of the provided commands:
$ TOKEN=$(curl "https://auth.docker.io/token?service=registry.docker.io&scope=repository:ratelimitpreview/test:pull" | jq -r .token)
$ TOKEN=$(curl --user 'username:password' "https://auth.docker.io/token?service=registry.docker.io&scope=repository:ratelimitpreview/test:pull" | jq -r .token)
$ curl --head -H "Authorization: Bearer $TOKEN" https://registry-1.docker.io/v2/ratelimitpreview/test/manifests/latest
Suggested fix
Update the note to only list the tools that are actually required:
> [!NOTE]
>
> To check your limits, you need `curl` and `jq` installed.
Found by nightly documentation freshness scanner
File:
content/manuals/docker-hub/usage/pulls.mdIssue
The note before the "View pull rate and limit" instructions lists incorrect prerequisites:
However, the actual commands shown in the section only use
curlandjq. Thegreptool is never used in any of the provided commands:Suggested fix
Update the note to only list the tools that are actually required:
Found by nightly documentation freshness scanner