From 7ded6d3aef4efb38eda7e03754695a761a113f8e Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Tue, 15 Apr 2025 10:55:36 +0100 Subject: [PATCH] Use registry:3 image for the integration tests v3 was recently released which broke the integration tests. Update them to use the correct config file. Set the major version to prevent this from happening when v4 is released. --- test/integration/docker/registry/Dockerfile | 2 +- test/integration/docker/registry/boot.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/docker/registry/Dockerfile b/test/integration/docker/registry/Dockerfile index f5eefc33..01bd0245 100644 --- a/test/integration/docker/registry/Dockerfile +++ b/test/integration/docker/registry/Dockerfile @@ -1,4 +1,4 @@ -FROM registry +FROM registry:3 COPY boot.sh . diff --git a/test/integration/docker/registry/boot.sh b/test/integration/docker/registry/boot.sh index 6eb8a518..fbb339ac 100755 --- a/test/integration/docker/registry/boot.sh +++ b/test/integration/docker/registry/boot.sh @@ -1,3 +1,3 @@ #!/bin/sh -exec /entrypoint.sh /etc/docker/registry/config.yml +exec /entrypoint.sh /etc/distribution/config.yml