From 41f4f0be4ce01b4e6812dd77eb59385deb0fff1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erwan=20Herv=C3=A9?= <62173453+Erwan-loot@users.noreply.github.com> Date: Thu, 16 Apr 2026 18:59:46 +0200 Subject: [PATCH 1/2] chore: add OCI standard labels to Dockerfile templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Erwan Hervé <62173453+Erwan-loot@users.noreply.github.com> --- Dockerfile-debian.template | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template index 72e4d08ce..ee38eb56d 100644 --- a/Dockerfile-debian.template +++ b/Dockerfile-debian.template @@ -164,5 +164,14 @@ RUN set -ex; \ COPY *.sh upgrade.exclude / COPY config/* /usr/src/nextcloud/config/ +LABEL org.opencontainers.image.title="Nextcloud" \ + org.opencontainers.image.description="A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms." \ + org.opencontainers.image.url="https://nextcloud.com" \ + org.opencontainers.image.source="https://github.com/nextcloud/docker" \ + org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \ + org.opencontainers.image.vendor="Nextcloud GmbH" \ + org.opencontainers.image.licenses="AGPL-3.0-or-later" \ + org.opencontainers.image.version="%%VERSION%%" + ENTRYPOINT ["/entrypoint.sh"] CMD ["%%CMD%%"] From 85852bb0bfe1701ce05b4e37c5b90326a8ec2782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erwan=20Herv=C3=A9?= <62173453+Erwan-loot@users.noreply.github.com> Date: Thu, 16 Apr 2026 18:59:54 +0200 Subject: [PATCH 2/2] chore: add OCI standard labels to Dockerfile templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Erwan Hervé <62173453+Erwan-loot@users.noreply.github.com> --- Dockerfile-alpine.template | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template index 5fe764bb3..327f4919d 100644 --- a/Dockerfile-alpine.template +++ b/Dockerfile-alpine.template @@ -153,5 +153,14 @@ RUN set -ex; \ COPY *.sh upgrade.exclude / COPY config/* /usr/src/nextcloud/config/ +LABEL org.opencontainers.image.title="Nextcloud" \ + org.opencontainers.image.description="A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms." \ + org.opencontainers.image.url="https://nextcloud.com" \ + org.opencontainers.image.source="https://github.com/nextcloud/docker" \ + org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \ + org.opencontainers.image.vendor="Nextcloud GmbH" \ + org.opencontainers.image.licenses="AGPL-3.0-or-later" \ + org.opencontainers.image.version="%%VERSION%%" + ENTRYPOINT ["/entrypoint.sh"] CMD ["%%CMD%%"]