Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update download-rate-limit.md #2

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions content/manuals/docker-hub/download-rate-limit.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
| Team | Unlimited | Unlimited | Unlimited | Up to 50 GB |
| Business | Unlimited | Unlimited | Unlimited | Up to 500 GB |

### How storage is calculated

Private repository storage is calculated on a monthly basis based on the average
storage used throughout the month per namespace. Docker measures your storage
Expand All @@ -140,6 +141,10 @@
limit](../subscription/scale.md) or [upgrade](../subscription/change.md) to get
a higher limit.

We calculate storage based on each unique image layer (or “digest”) stored within a repository. Only unique layers contribute to your storage usage, which means if multiple images in a single repository share the same layer, you’re only billed once for that layer. However, if the same layer is used across different repositories, it will count separately in each one.

Check warning on line 144 in content/manuals/docker-hub/download-rate-limit.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.We] Avoid using first-person plural like 'We'. Raw Output: {"message": "[Docker.We] Avoid using first-person plural like 'We'.", "location": {"path": "content/manuals/docker-hub/download-rate-limit.md", "range": {"start": {"line": 144, "column": 1}}}, "severity": "WARNING"}
sarahsanders-docker marked this conversation as resolved.
Show resolved Hide resolved

**Example:** If 10 different repositories use the same digest, you would be billed for the storage of that digest 10 times (once per repository). However, if you have 10 versions of an image within a single repository that uses the same digest, you would only pay for that digest once.
sarahsanders-docker marked this conversation as resolved.
Show resolved Hide resolved

## Pull limit and rate limit

A pull is defined as the following:
Expand Down
Loading