From 215fd2faed88d9b1d09d4bbbe1991d32e1a8d2a3 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 895838f5..bbaa40a7 100755 --- a/test/integration/docker/registry/boot.sh +++ b/test/integration/docker/registry/boot.sh @@ -2,4 +2,4 @@ while [ ! -f /certs/domain.crt ]; do sleep 1; done -exec /entrypoint.sh /etc/docker/registry/config.yml +exec /entrypoint.sh /etc/distribution/config.yml