-
Notifications
You must be signed in to change notification settings - Fork 7.6k
docs: Added section explaining how RAM configurations restricting Docker hub interacts with mirror registries #22474
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
base: main
Are you sure you want to change the base?
Conversation
…b interacts with mirror registries
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Error response from daemon: Access to docker.io has been restricted by your administrators. | ||
``` | ||
|
||
This happens because RAM restrictions are enforced at the API proxy layer, meaning that the request is blocked before Docker Desktop even attempts to pull from a registry mirror or fall back to Docker Hub. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chaomonica we can remove this part (line 57), as it is an implementation detail, end user need not know about it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also under Caveats
in https://docs.docker.com/security/for-admins/hardened-desktop/registry-access-management/ we can add a link that points to the description here.
Description
If a user has configured a mirror registry but has restricted Docker Hub in their RAM settings, they will get an error
Access to docker.io has been restricted by your administrators.
even if that image has already been cached in their registry mirror.Related issues or tickets
SEG-1124 (Slack thread linked in ticket for context)
Reviews
Please do not merge until after technical review!
@karman-docker I have tested the commands in the following section. Could you please review "This happens because RAM restrictions are enforced at the API proxy layer, meaning that the request is blocked before Docker Desktop even attempts to pull from a registry mirror or fall back to Docker Hub."?