mirror of
https://github.com/nextcloud/docker.git
synced 2025-07-23 07:38:06 +02:00
Compare commits
5 commits
ab5bab6dc2
...
da9bb94598
Author | SHA1 | Date | |
---|---|---|---|
|
da9bb94598 | ||
|
2d45183b8d | ||
|
99ddd09783 | ||
|
cf1df9f1cc | ||
|
b7b0bbde65 |
13 changed files with 144 additions and 24 deletions
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
|
@ -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; \
|
||||
\
|
||||
|
|
12
README.md
12
README.md
|
@ -1,17 +1,5 @@
|
|||
# What is Nextcloud?
|
||||
|
||||
[](https://github.com/nextcloud/docker/actions?query=workflow%3AImages)
|
||||
[](https://github.com/nextcloud/docker/actions?query=workflow%3Aupdate.sh)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/amd64/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v5/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v6/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/arm32v7/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/arm64v8/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/i386/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/mips64le/job/nextcloud)
|
||||
[](https://doi-janky.infosiftr.net/job/multiarch/job/ppc64le/job/nextcloud)
|
||||
[](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.
|
||||
|
||||

|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue