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
Copy file name to clipboardExpand all lines: content/manuals/docker-hub/image-library/mirror.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,23 @@ Hub can be mirrored.
45
45
The Registry can be configured as a pull through cache. In this mode a Registry
46
46
responds to all normal docker pull requests but stores all content locally.
47
47
48
+
### Using Registry Access Management (RAM) with a registry mirror
49
+
50
+
If Docker Hub access is restricted via your Registry Access Management (RAM) configuration, you will not be able to pull images originating from Docker Hub even if the images are available in your registry mirror.
51
+
52
+
You may encounter an error like:
53
+
```bash
54
+
Error response from daemon: Access to docker.io has been restricted by your administrators.
55
+
```
56
+
57
+
This happens because RAM restrictions are enforced at the API proxy layer, meaning the request is blocked before Docker Desktop even attempts to pull from a registry mirror or fall back to Docker Hub.
58
+
59
+
If you are unable to allow access to Docker Hub, you can manually pull from your registry mirror and optionally, retag the image. For example:
0 commit comments