[bitnami/harbor-registry] Release 2.15.2-debian-12-r0 (#95090)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2026-07-02 15:10:05 +02:00
committed by GitHub
parent 30027c7483
commit 22b358c5d4
6 changed files with 12 additions and 12 deletions
@@ -7,13 +7,13 @@ ARG DOWNLOADS_URL="https://downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2026-06-10T16:21:07Z" \
org.opencontainers.image.created="2026-07-02T13:01:39Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry" \
org.opencontainers.image.title="harbor-registry" \
org.opencontainers.image.vendor="Broadcom, Inc." \
org.opencontainers.image.version="2.15.1"
org.opencontainers.image.version="2.15.2"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -28,7 +28,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"harbor-registry-2.15.1-2-linux-${OS_ARCH}-debian-12" \
"harbor-registry-2.15.2-0-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -47,9 +47,9 @@ RUN uninstall_packages curl
COPY rootfs /
RUN /opt/bitnami/scripts/harbor-registry/postunpack.sh
ENV APP_VERSION="2.15.1" \
ENV APP_VERSION="2.15.2" \
BITNAMI_APP_NAME="harbor-registry" \
IMAGE_REVISION="5" \
IMAGE_REVISION="0" \
PATH="/opt/bitnami/harbor-registry/bin:$PATH"
VOLUME [ "/etc/registry", "/storage", "/var/lib/registry" ]
@@ -1 +0,0 @@
2ba741bf9b069ba9e07ff5f9d23fc159b83cc9ffa27f6b9b37bbd5d29b04a9ba harbor-registry-2.15.1-2-linux-amd64-debian-12.tar.gz
@@ -1 +0,0 @@
380e2b03fb4e2d05f0e0b3c60430d7fe9bc7145c716912ddf128981a35c1ccc0 harbor-registry-2.15.1-2-linux-arm64-debian-12.tar.gz
@@ -0,0 +1 @@
4e0182555795d2ccaa1042bfe3b94721c2c03a94586b333edb8c644dcd21483d harbor-registry-2.15.2-0-linux-amd64-debian-12.tar.gz
@@ -0,0 +1 @@
bb9acb6c947ffed5a6e7196dfc3d8deaa58ee1637f690b8fd7842376e0a8e665 harbor-registry-2.15.2-0-linux-arm64-debian-12.tar.gz
@@ -39,7 +39,7 @@ persist_app() {
fi
pushd "$install_dir" >/dev/null || exit
local file_to_persist_relative file_to_persist_destination file_to_persist_destination_folder
local -r tmp_file="/tmp/perms.acl"
local -r acl_file="$(mktemp "${TMPDIR:-/tmp}"/acl.XXXXXXXXXX)"
for file_to_persist in "${files_to_persist[@]}"; do
if [[ ! -f "$file_to_persist" && ! -d "$file_to_persist" ]]; then
error "Cannot persist '${file_to_persist}' because it does not exist"
@@ -50,22 +50,22 @@ persist_app() {
file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")"
# Get original permissions for existing files, which will be applied later
# Exclude the root directory with 'sed', to avoid issues when copying the entirety of it to a volume
getfacl -R "$file_to_persist_relative" | sed -E '/# file: (\..+|[^.])/,$!d' > "$tmp_file"
getfacl -R "$file_to_persist_relative" | sed -E '/# file: (\..+|[^.])/,$!d' > "$acl_file"
# Copy directories to the volume
ensure_dir_exists "$file_to_persist_destination_folder"
cp -Lr --preserve=links "$file_to_persist_relative" "$file_to_persist_destination_folder"
# Restore permissions
pushd "$persist_dir" >/dev/null || exit
if am_i_root; then
setfacl --restore="$tmp_file"
setfacl --restore="$acl_file"
else
# When running as non-root, don't change ownership
setfacl --restore=<(grep -E -v '^# (owner|group):' "$tmp_file")
setfacl --restore=<(grep -E -v '^# (owner|group):' "$acl_file")
fi
popd >/dev/null || exit
done
popd >/dev/null || exit
rm -f "$tmp_file"
rm -f "$acl_file"
# Install the persisted files into the installation directory, via symlinks
restore_persisted_app "$@"
}