0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-07-23 07:38:06 +02:00

Compare commits

...

5 commits

Author SHA1 Message Date
philipp-check24
da9bb94598
Merge b7b0bbde65 into 2d45183b8d 2024-12-07 13:19:53 +01:00
GitHub Workflow
2d45183b8d Runs update.sh 2024-12-07 00:35:06 +00:00
GitHub Workflow
99ddd09783 Runs update.sh 2024-12-05 20:29:40 +00:00
Josh
cf1df9f1cc
chore: remove no longer used badges from README (#2345)
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-12-05 20:29:24 +00:00
Philipp Müller
b7b0bbde65 Added opencontainer labels to images
Signed-off-by: Philipp Müller <philipp.mueller@check24.de>
2024-10-24 19:41:41 +02:00
13 changed files with 144 additions and 24 deletions

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-apache-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-apache-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="28.0.11" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.2-fpm-alpine3.20
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-alpine3.20" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="28.0.11" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-fpm-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="28.0.11" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-apache-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-apache-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="29.0.8" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\
@ -140,7 +152,7 @@ RUN { \
} > /etc/apache2/conf-available/apache-limits.conf; \
a2enconf apache-limits
ENV NEXTCLOUD_VERSION 29.0.8
ENV NEXTCLOUD_VERSION 29.0.10
RUN set -ex; \
fetchDeps=" \
@ -150,8 +162,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.2-fpm-alpine3.20
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-alpine3.20" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="29.0.8" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\
@ -120,7 +132,7 @@ RUN { \
VOLUME /var/www/html
ENV NEXTCLOUD_VERSION 29.0.8
ENV NEXTCLOUD_VERSION 29.0.10
RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
@ -128,8 +140,8 @@ RUN set -ex; \
gnupg \
; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-fpm-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="29.0.8" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\
@ -125,7 +137,7 @@ RUN { \
VOLUME /var/www/html
ENV NEXTCLOUD_VERSION 29.0.8
ENV NEXTCLOUD_VERSION 29.0.10
RUN set -ex; \
fetchDeps=" \
@ -135,8 +147,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-apache-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-apache-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="30.0.1" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:8.2-fpm-alpine3.20
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-alpine3.20" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="30.0.1" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,6 +1,18 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:8.2-fpm-bookworm
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:8.2-fpm-bookworm" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="30.0.1" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,5 +1,17 @@
FROM php:%%PHP_VERSION%%-%%VARIANT%%%%ALPINE_VERSION%%
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:%%PHP_VERSION%%-%%VARIANT%%%%ALPINE_VERSION%%" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="%%VERSION%%" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,5 +1,17 @@
FROM php:%%PHP_VERSION%%-%%VARIANT%%-%%DEBIAN_VERSION%%
# OCI annotations
LABEL org.opencontainers.image.authors="Nextcloud Community" \
org.opencontainers.image.title="Nextcloud" \
org.opencontainers.image.description="Nextcloud is a self-hosted platform for file sharing and collaboration" \
org.opencontainers.image.documentation="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.base.name="docker.io/library/php:%%PHP_VERSION%%-%%VARIANT%%-%%DEBIAN_VERSION%%" \
org.opencontainers.image.licenses="AGPL-3.0" \
org.opencontainers.image.source="https://hub.docker.com/_/nextcloud" \
org.opencontainers.image.vendor="Nextcloud Community" \
org.opencontainers.image.version="%%VERSION%%" \
org.opencontainers.image.url="https://github.com/nextcloud/docker"
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
\

View file

@ -1,17 +1,5 @@
# What is Nextcloud?
[![GitHub CI build status badge](https://github.com/nextcloud/docker/workflows/Images/badge.svg)](https://github.com/nextcloud/docker/actions?query=workflow%3AImages)
[![update.sh build status badge](https://github.com/nextcloud/docker/workflows/update.sh/badge.svg)](https://github.com/nextcloud/docker/actions?query=workflow%3Aupdate.sh)
[![amd64 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/amd64/job/nextcloud.svg?label=amd64)](https://doi-janky.infosiftr.net/job/multiarch/job/amd64/job/nextcloud)
[![arm32v5 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/arm32v5/job/nextcloud.svg?label=arm32v5)](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v5/job/nextcloud)
[![arm32v6 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/arm32v6/job/nextcloud.svg?label=arm32v6)](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v6/job/nextcloud)
[![arm32v7 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/arm32v7/job/nextcloud.svg?label=arm32v7)](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v7/job/nextcloud)
[![arm64v8 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/arm64v8/job/nextcloud.svg?label=arm64v8)](https://doi-janky.infosiftr.net/job/multiarch/job/arm64v8/job/nextcloud)
[![i386 build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/i386/job/nextcloud.svg?label=i386)](https://doi-janky.infosiftr.net/job/multiarch/job/i386/job/nextcloud)
[![mips64le build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/mips64le/job/nextcloud.svg?label=mips64le)](https://doi-janky.infosiftr.net/job/multiarch/job/mips64le/job/nextcloud)
[![ppc64le build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/ppc64le/job/nextcloud.svg?label=ppc64le)](https://doi-janky.infosiftr.net/job/multiarch/job/ppc64le/job/nextcloud)
[![s390x build status badge](https://img.shields.io/jenkins/s/https/doi-janky.infosiftr.net/job/multiarch/job/s390x/job/nextcloud.svg?label=s390x)](https://doi-janky.infosiftr.net/job/multiarch/job/s390x/job/nextcloud)
A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms.
![logo](https://cdn.rawgit.com/nextcloud/docker/071b888f7f689caa62c1498b6c61cb3599bcea2b/logo.svg)

View file

@ -27,9 +27,9 @@
},
"29": {
"branch": "29",
"version": "29.0.8",
"url": "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-29.0.8.tar.bz2.asc",
"version": "29.0.10",
"url": "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc",
"variants": {
"apache": {
"variant": "apache",