Skip to content

Commit c52c7d3

Browse files
committed
release 0.6.1 -- with no breaking changes, hopefully
1 parent 536f0fc commit c52c7d3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ for this to work it requires inserting a root CA certificate into system trusted
6363
## master/:latest is unstable/beta
6464

6565
- `:latest` and `:latest-debug` Docker tag is unstable, built from master, and amd64-only
66-
- 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
66+
- 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
6767
- 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
6868

6969
## Also hosted on GitHub Container Registry (ghcr.io)
@@ -93,7 +93,7 @@ docker run --rm --name docker_registry_proxy -it \
9393
-p 0.0.0.0:3128:3128 -e ENABLE_MANIFEST_CACHE=true \
9494
-v $(pwd)/docker_mirror_cache:/docker_mirror_cache \
9595
-v $(pwd)/docker_mirror_certs:/ca \
96-
rpardini/docker-registry-proxy:0.6.0
96+
rpardini/docker-registry-proxy:0.6.1
9797
```
9898

9999
### DockerHub auth
@@ -109,7 +109,7 @@ docker run --rm --name docker_registry_proxy -it \
109109
-v $(pwd)/docker_mirror_certs:/ca \
110110
-e REGISTRIES="k8s.gcr.io gcr.io quay.io your.own.registry another.public.registry" \
111111
-e AUTH_REGISTRIES="auth.docker.io:dockerhub_username:dockerhub_password your.own.registry:username:password" \
112-
rpardini/docker-registry-proxy:0.6.0
112+
rpardini/docker-registry-proxy:0.6.1
113113
```
114114

115115
### Simple registries auth (HTTP Basic auth)
@@ -137,7 +137,7 @@ docker run --rm --name docker_registry_proxy -it \
137137
-v $(pwd)/docker_mirror_certs:/ca \
138138
-e REGISTRIES="reg.example.com git.example.com" \
139139
-e AUTH_REGISTRIES="git.example.com:USER:PASSWORD" \
140-
rpardini/docker-registry-proxy:0.6.0
140+
rpardini/docker-registry-proxy:0.6.1
141141
```
142142

143143
### Google Container Registry (GCR) auth
@@ -160,7 +160,7 @@ docker run --rm --name docker_registry_proxy -it \
160160
-e AUTH_REGISTRIES_DELIMITER=";;;" \
161161
-e AUTH_REGISTRY_DELIMITER=":::" \
162162
-e AUTH_REGISTRIES="gcr.io:::_json_key:::$(cat servicekey.json);;;auth.docker.io:::dockerhub_username:::dockerhub_password" \
163-
rpardini/docker-registry-proxy:0.6.0
163+
rpardini/docker-registry-proxy:0.6.1
164164
```
165165

166166
## Configuring the Docker clients using Docker Desktop for Mac
@@ -223,7 +223,7 @@ docker run --rm --name docker_registry_proxy -it
223223
-p 0.0.0.0:3128:3128 -e ENABLE_MANIFEST_CACHE=true \
224224
-v $(pwd)/docker_mirror_cache:/docker_mirror_cache \
225225
-v $(pwd)/docker_mirror_certs:/ca \
226-
rpardini/docker-registry-proxy:0.6.0-debug
226+
rpardini/docker-registry-proxy:0.6.1-debug
227227
```
228228

229229
- `DEBUG=true` enables the mitmweb proxy between Docker clients and the caching layer, accessible on port 8081

docs/compose/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.7'
22

33
services:
44
docker_registry_proxy:
5-
image: rpardini/docker-registry-proxy:0.6.0 # Check and make sure this is the last released version
5+
image: rpardini/docker-registry-proxy:0.6.1 # Check and make sure this is the last released version
66
env_file: # This contains REGISTRIES and AUTH_REGISTRIES
77
- ./secrets.env
88
environment:

docs/kops/docker-registry-proxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: default
2020
containers:
2121
- name: docker-registry-proxy
22-
image: ghcr.io/rpardini/docker-registry-proxy:0.6.0
22+
image: ghcr.io/rpardini/docker-registry-proxy:0.6.1
2323
imagePullPolicy: IfNotPresent
2424
env:
2525
- name: ENABLE_MANIFEST_CACHE

0 commit comments

Comments
 (0)