We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861293b commit 0c3e453Copy full SHA for 0c3e453
README.md
@@ -18,3 +18,12 @@ Or via environment variables:
18
```bash
19
PROXY_LISTEN=localhost:1234 PROXY_REGISTRY=https://us-docker.pkg.dv/example-project/example-repo gcp-artifact-registry-docker-proxy
20
```
21
+
22
+To configure docker daemon with Gcp Artifact Registry Docker Proxy add registry-mirror to /etc/docker/daemon.json (on linux):
23
24
+```bash
25
+{
26
+ "registry-mirrors": ["http://localhost:1234/<YOUR GCP PROJECT NAME>/<ARTIFACT REGISTRY NAME>/"],
27
+ "insecure-registries": ["localhost:1234"]
28
+}
29
+```
0 commit comments