From c52c7d3741d8eba2bb14d1a1576ee3e9ff16b816 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Wed, 2 Dec 2020 15:11:00 +0100 Subject: [PATCH] release 0.6.1 -- with no breaking changes, hopefully --- README.md | 12 ++++++------ docs/compose/docker-compose.yml | 2 +- docs/kops/docker-registry-proxy.yaml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d00283b..6f2ef47 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ for this to work it requires inserting a root CA certificate into system trusted ## master/:latest is unstable/beta - `:latest` and `:latest-debug` Docker tag is unstable, built from master, and amd64-only -- Production/stable is `0.6.0`, see [0.6.0 tag on Github](https://github.com/rpardini/docker-registry-proxy/tree/0.6.0) - this image is multi-arch amd64/arm64 +- Production/stable is `0.6.1`, see [0.6.1 tag on Github](https://github.com/rpardini/docker-registry-proxy/tree/0.6.1) - this image is multi-arch amd64/arm64 - The previous version is `0.5.0`, without any manifest caching, see [0.5.0 tag on Github](https://github.com/rpardini/docker-registry-proxy/tree/0.5.0) - this image is multi-arch amd64/arm64 ## Also hosted on GitHub Container Registry (ghcr.io) @@ -93,7 +93,7 @@ docker run --rm --name docker_registry_proxy -it \ -p 0.0.0.0:3128:3128 -e ENABLE_MANIFEST_CACHE=true \ -v $(pwd)/docker_mirror_cache:/docker_mirror_cache \ -v $(pwd)/docker_mirror_certs:/ca \ - rpardini/docker-registry-proxy:0.6.0 + rpardini/docker-registry-proxy:0.6.1 ``` ### DockerHub auth @@ -109,7 +109,7 @@ docker run --rm --name docker_registry_proxy -it \ -v $(pwd)/docker_mirror_certs:/ca \ -e REGISTRIES="k8s.gcr.io gcr.io quay.io your.own.registry another.public.registry" \ -e AUTH_REGISTRIES="auth.docker.io:dockerhub_username:dockerhub_password your.own.registry:username:password" \ - rpardini/docker-registry-proxy:0.6.0 + rpardini/docker-registry-proxy:0.6.1 ``` ### Simple registries auth (HTTP Basic auth) @@ -137,7 +137,7 @@ docker run --rm --name docker_registry_proxy -it \ -v $(pwd)/docker_mirror_certs:/ca \ -e REGISTRIES="reg.example.com git.example.com" \ -e AUTH_REGISTRIES="git.example.com:USER:PASSWORD" \ - rpardini/docker-registry-proxy:0.6.0 + rpardini/docker-registry-proxy:0.6.1 ``` ### Google Container Registry (GCR) auth @@ -160,7 +160,7 @@ docker run --rm --name docker_registry_proxy -it \ -e AUTH_REGISTRIES_DELIMITER=";;;" \ -e AUTH_REGISTRY_DELIMITER=":::" \ -e AUTH_REGISTRIES="gcr.io:::_json_key:::$(cat servicekey.json);;;auth.docker.io:::dockerhub_username:::dockerhub_password" \ - rpardini/docker-registry-proxy:0.6.0 + rpardini/docker-registry-proxy:0.6.1 ``` ## Configuring the Docker clients using Docker Desktop for Mac @@ -223,7 +223,7 @@ docker run --rm --name docker_registry_proxy -it -p 0.0.0.0:3128:3128 -e ENABLE_MANIFEST_CACHE=true \ -v $(pwd)/docker_mirror_cache:/docker_mirror_cache \ -v $(pwd)/docker_mirror_certs:/ca \ - rpardini/docker-registry-proxy:0.6.0-debug + rpardini/docker-registry-proxy:0.6.1-debug ``` - `DEBUG=true` enables the mitmweb proxy between Docker clients and the caching layer, accessible on port 8081 diff --git a/docs/compose/docker-compose.yml b/docs/compose/docker-compose.yml index 3dd8807..012da76 100644 --- a/docs/compose/docker-compose.yml +++ b/docs/compose/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.7' services: docker_registry_proxy: - image: rpardini/docker-registry-proxy:0.6.0 # Check and make sure this is the last released version + image: rpardini/docker-registry-proxy:0.6.1 # Check and make sure this is the last released version env_file: # This contains REGISTRIES and AUTH_REGISTRIES - ./secrets.env environment: diff --git a/docs/kops/docker-registry-proxy.yaml b/docs/kops/docker-registry-proxy.yaml index 3f2a7af..48e6b34 100644 --- a/docs/kops/docker-registry-proxy.yaml +++ b/docs/kops/docker-registry-proxy.yaml @@ -19,7 +19,7 @@ spec: serviceAccountName: default containers: - name: docker-registry-proxy - image: ghcr.io/rpardini/docker-registry-proxy:0.6.0 + image: ghcr.io/rpardini/docker-registry-proxy:0.6.1 imagePullPolicy: IfNotPresent env: - name: ENABLE_MANIFEST_CACHE