From 5aba62c81cd07678b7d492cd2b060c92b74162ef Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Tue, 13 Feb 2024 14:10:07 +0000 Subject: [PATCH] reference by name --- .github/workflows/iso.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/iso.yml b/.github/workflows/iso.yml index bee5045..f4e3a3f 100644 --- a/.github/workflows/iso.yml +++ b/.github/workflows/iso.yml @@ -20,7 +20,7 @@ jobs: docker_registry: image: docker.io/library/registry:2 ports: - - 8080:5000 + - 5000:5000 volumes: - registry_cache:/var/lib/registry permissions: @@ -44,13 +44,13 @@ jobs: run: | cat << EOF >> /etc/containers/registries.conf [[registry]] - location = "localhost:8080" + location = "docker_registry:5000" insecure = true EOF - name: Download container to cache run: | - podman pull localhost:8080/ublue-os/base-main:39 + podman pull docker_registry:5000/ublue-os/base-main:39 - name: Show downloaded files run: |