mirror of
https://github.com/nextcloud/docker.git
synced 2025-07-23 07:38:06 +02:00
Compare commits
4 commits
da9bb94598
...
13205a5dc4
Author | SHA1 | Date | |
---|---|---|---|
|
13205a5dc4 | ||
|
035003969a | ||
|
f413890332 | ||
|
b7b0bbde65 |
14 changed files with 158 additions and 26 deletions
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-apache-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -140,7 +152,7 @@ RUN { \
|
||||||
} > /etc/apache2/conf-available/apache-limits.conf; \
|
} > /etc/apache2/conf-available/apache-limits.conf; \
|
||||||
a2enconf apache-limits
|
a2enconf apache-limits
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 28.0.12
|
ENV NEXTCLOUD_VERSION 28.0.14
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
fetchDeps=" \
|
fetchDeps=" \
|
||||||
|
@ -150,8 +162,8 @@ RUN set -ex; \
|
||||||
apt-get update; \
|
apt-get update; \
|
||||||
apt-get install -y --no-install-recommends $fetchDeps; \
|
apt-get install -y --no-install-recommends $fetchDeps; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
||||||
FROM php:8.2-fpm-alpine3.20
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -120,7 +132,7 @@ RUN { \
|
||||||
VOLUME /var/www/html
|
VOLUME /var/www/html
|
||||||
|
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 28.0.12
|
ENV NEXTCLOUD_VERSION 28.0.14
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apk add --no-cache --virtual .fetch-deps \
|
apk add --no-cache --virtual .fetch-deps \
|
||||||
|
@ -128,8 +140,8 @@ RUN set -ex; \
|
||||||
gnupg \
|
gnupg \
|
||||||
; \
|
; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-fpm-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -125,7 +137,7 @@ RUN { \
|
||||||
VOLUME /var/www/html
|
VOLUME /var/www/html
|
||||||
|
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 28.0.12
|
ENV NEXTCLOUD_VERSION 28.0.14
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
fetchDeps=" \
|
fetchDeps=" \
|
||||||
|
@ -135,8 +147,8 @@ RUN set -ex; \
|
||||||
apt-get update; \
|
apt-get update; \
|
||||||
apt-get install -y --no-install-recommends $fetchDeps; \
|
apt-get install -y --no-install-recommends $fetchDeps; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-apache-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
||||||
FROM php:8.2-fpm-alpine3.20
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-fpm-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-apache-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -140,7 +152,7 @@ RUN { \
|
||||||
} > /etc/apache2/conf-available/apache-limits.conf; \
|
} > /etc/apache2/conf-available/apache-limits.conf; \
|
||||||
a2enconf apache-limits
|
a2enconf apache-limits
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 30.0.2
|
ENV NEXTCLOUD_VERSION 30.0.4
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
fetchDeps=" \
|
fetchDeps=" \
|
||||||
|
@ -150,8 +162,8 @@ RUN set -ex; \
|
||||||
apt-get update; \
|
apt-get update; \
|
||||||
apt-get install -y --no-install-recommends $fetchDeps; \
|
apt-get install -y --no-install-recommends $fetchDeps; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
||||||
FROM php:8.2-fpm-alpine3.20
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -120,7 +132,7 @@ RUN { \
|
||||||
VOLUME /var/www/html
|
VOLUME /var/www/html
|
||||||
|
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 30.0.2
|
ENV NEXTCLOUD_VERSION 30.0.4
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apk add --no-cache --virtual .fetch-deps \
|
apk add --no-cache --virtual .fetch-deps \
|
||||||
|
@ -128,8 +140,8 @@ RUN set -ex; \
|
||||||
gnupg \
|
gnupg \
|
||||||
; \
|
; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||||
FROM php:8.2-fpm-bookworm
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
@ -125,7 +137,7 @@ RUN { \
|
||||||
VOLUME /var/www/html
|
VOLUME /var/www/html
|
||||||
|
|
||||||
|
|
||||||
ENV NEXTCLOUD_VERSION 30.0.2
|
ENV NEXTCLOUD_VERSION 30.0.4
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
fetchDeps=" \
|
fetchDeps=" \
|
||||||
|
@ -135,8 +147,8 @@ RUN set -ex; \
|
||||||
apt-get update; \
|
apt-get update; \
|
||||||
apt-get install -y --no-install-recommends $fetchDeps; \
|
apt-get install -y --no-install-recommends $fetchDeps; \
|
||||||
\
|
\
|
||||||
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2"; \
|
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2"; \
|
||||||
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2.asc"; \
|
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
|
||||||
export GNUPGHOME="$(mktemp -d)"; \
|
export GNUPGHOME="$(mktemp -d)"; \
|
||||||
# gpg key from https://nextcloud.com/nextcloud.asc
|
# gpg key from https://nextcloud.com/nextcloud.asc
|
||||||
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
|
||||||
|
|
|
@ -1,5 +1,17 @@
|
||||||
FROM php:%%PHP_VERSION%%-%%VARIANT%%%%ALPINE_VERSION%%
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,5 +1,17 @@
|
||||||
FROM php:%%PHP_VERSION%%-%%VARIANT%%-%%DEBIAN_VERSION%%
|
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
|
# entrypoint.sh and cron.sh dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
stable_channel='30.0.2'
|
stable_channel='30.0.4'
|
||||||
|
|
||||||
self="$(basename "$BASH_SOURCE")"
|
self="$(basename "$BASH_SOURCE")"
|
||||||
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
30.0.2
|
30.0.4
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"30": {
|
"30": {
|
||||||
"branch": "30",
|
"branch": "30",
|
||||||
"version": "30.0.2",
|
"version": "30.0.4",
|
||||||
"url": "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2",
|
"url": "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2",
|
||||||
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2.asc",
|
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc",
|
||||||
"variants": {
|
"variants": {
|
||||||
"apache": {
|
"apache": {
|
||||||
"variant": "apache",
|
"variant": "apache",
|
||||||
|
@ -53,9 +53,9 @@
|
||||||
},
|
},
|
||||||
"28": {
|
"28": {
|
||||||
"branch": "28",
|
"branch": "28",
|
||||||
"version": "28.0.12",
|
"version": "28.0.14",
|
||||||
"url": "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2",
|
"url": "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2",
|
||||||
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-28.0.12.tar.bz2.asc",
|
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2.asc",
|
||||||
"variants": {
|
"variants": {
|
||||||
"apache": {
|
"apache": {
|
||||||
"variant": "apache",
|
"variant": "apache",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue