Do I need to list registry-mirrors in no-proxy when writing daemon.json ? #5824
|
Need direct connections to the |
Answered by
christianalberto
Jul 23, 2026
Replies: 1 comment
|
Yes, absolutely. If your registry mirror is located within your local/internal network (or accessible directly without going through the outbound proxy), you must list its domain or IP address in the Why this happensWhen a proxy is configured for the Docker daemon:
How to configure it in
|
0 replies
Answer selected by
ianzone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, absolutely. If your registry mirror is located within your local/internal network (or accessible directly without going through the outbound proxy), you must list its domain or IP address in the
no-proxylist insidedaemon.json(or your environment settings).Why this happens
When a proxy is configured for the Docker daemon:
registry-mirrorshost is not specified inno-proxy, Docker will attempt to reach the local/internal mirror via the proxy.