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 all commits
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 @@ The following storage and repository limits apply based on your subscription, su
| 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 @@ charged at an on-demand rate. You can [scale your
limit](../subscription/scale.md) or [upgrade](../subscription/change.md) to get
a higher limit.

Docker Hub calculates 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.

For 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.

## Pull limit and rate limit

A pull is defined as the following:
Expand Down