Skip to content

Commit fae286b

Browse files
committed
[Wip] Bump distribution version to 2.8.3
1 parent 5da2f4a commit fae286b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/src/main/java/de/gesellix/docker/registry/DockerRegistry.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ public DockerRegistry() {
3939
if (LocalDocker.isNativeWindows()) {
4040
imageNameWithTag = "gesellix/registry:2.8.1-windows-ltsc2022";
4141
} else {
42-
imageNameWithTag = "registry:2.8.1";
42+
imageNameWithTag = "registry:2.8.3";
4343
}
44+
imageNameWithTag = System.getProperty("DOCKER_REGISTRY_IMAGE_OVERRIDE", imageNameWithTag);
4445
}
4546

4647
public void setImageNameWithTag(String imageNameWithTag) {

registry-windows/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV GO111MODULE=auto
66
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
77

88
ENV DOCKER_BUILDTAGS include_oss include_gcs
9-
ENV DISTRIBUTION_VERSION v2.8.1
9+
ENV DISTRIBUTION_VERSION v2.8.3
1010

1111
RUN mkdir src\github.com\docker ; \
1212
cd src\github.com\docker ; \

0 commit comments

Comments
 (0)