You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new Docker Hub rate limits on pulling (100 per 6 hours for anonymous, 200 for authenticated) will be quickly consumed by the image out-of-date checking. They define a pull as up to two manifest endpoint calls. The image out-of-date check depends entirely on anonymous image manifest lookups; if I have e.g. 20 base images, then restarting VSCode just five times in six hours would completely consume my allowance.
The text was updated successfully, but these errors were encountered:
The rate limits doc mentions that HEAD requests do not count against the limit, but unfortunately there is no data in the response to a HEAD request that is useful for this purpose.
The new Docker Hub rate limits on pulling (100 per 6 hours for anonymous, 200 for authenticated) will be quickly consumed by the image out-of-date checking. They define a pull as up to two manifest endpoint calls. The image out-of-date check depends entirely on anonymous image manifest lookups; if I have e.g. 20 base images, then restarting VSCode just five times in six hours would completely consume my allowance.
The text was updated successfully, but these errors were encountered: