Compare commits

...

28 Commits

Author SHA1 Message Date
557785c159 Updateing Nextcloud to 22.2.3 and 21.0.7 2021-11-17 14:23:20 +01:00
328ac765e9 Update PHP to 7.4.25 and 7.3.32 2021-11-13 12:11:54 +01:00
852d65df36 Update Nextcloud to 22.2.2, 21.0.6 and 20.0.14 2021-11-13 12:07:05 +01:00
6e2ebaa7e4 Update Nextcloud to 22.2.0, 21.0.5 and 20.0.13 2021-10-01 07:53:36 +02:00
b7b5e545a0 Update README 2021-09-17 16:13:11 +02:00
c6f1edcc8b Rename Version (Nextcloud 22.0 -> 22.1) 2021-09-17 16:12:03 +02:00
dcda13e797 Update nextcloud to 22.1.1 2021-09-14 22:09:42 +02:00
f3893b91a7 Update Nextcloud to 22.1.0, 21.0.4 and 20.0.12 2021-08-03 23:42:55 +02:00
98b607b058 Remove Nextcloud 19.0 2021-08-03 23:26:21 +02:00
26ae6dccf0 Update PHP to 7.4.22 2021-07-29 19:37:30 +02:00
7a9b05d3ee nextcloud:latest is now v22.0 2021-07-09 11:55:39 +02:00
9a364c5be7 Adjusting doc for Nextcloud 22 (#53)
* Fixing version
* Nextcloud 22 is released and Nextcloud 19 is EOL
2021-07-06 15:29:18 +02:00
36ff6a1a86 Add Nextcloud 22.0 2021-07-06 13:29:55 +02:00
fd6a64ce32 Update PHP to 7.4.21 2021-07-01 18:30:10 +02:00
ab15e38d80 Update PHP to 7.3.29 2021-07-01 14:05:42 +02:00
e67594a7c3 Update Nextcloud to 21.0.3, 20.0.11 and 19.0.13 2021-07-01 12:00:25 +02:00
7d67efecdc Update Nextcloud 19.0 to 19.0.12 2021-06-15 08:19:37 +02:00
6b51fc5158 Update PHP to 7.4.20 2021-06-03 13:55:46 +02:00
1d35e88fd8 Update NGINX to 1.20.1 2021-05-25 18:38:13 +02:00
ca8ae7b6b0 Update Nextcloud to 21.0.2, 20.0.10 and 19.0.11 2021-05-07 16:36:05 +02:00
f2141a1289 Update nginx to 1.20.0 2021-04-20 17:05:53 +02:00
47969b1115 Update Nextcloud to 21.0.1, 20.0.9 and 19.0.10 2021-04-09 11:23:04 +02:00
dc3c70173e Update PrivateBin to 1.3.5 2021-04-05 20:29:02 +02:00
3b382aba8f Update searx to 1.0.0 2021-03-28 18:48:22 +02:00
4ddcebb6af Update PHP to 7.4.16 and 7.3.28 2021-03-04 23:44:39 +01:00
1cff5f641e Update Nextcloud to 20.0.8 and 19.0.9 (#48)
* Update Nextcloud to 20.0.8
* Update Nextcloud to 19.0.9
2021-02-25 14:39:33 +01:00
27de5b38dc Enable APCu data cache on cli
see recommendation: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/caching_configuration.html#id1
2021-02-23 08:59:03 +01:00
ad93bae8e2 Update to Nextcloud 21 and remove 18 (end-of-life) 2021-02-22 13:12:24 +01:00
11 changed files with 27 additions and 101 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:3.13
ENV UID=991 GID=991
ARG NGINX_VERSION=1.18.0
ARG NGINX_VERSION=1.20.1
ARG GPG_NGINX="B0F4 2533 73F8 F6F5 10D4 2178 520A 9993 A1C0 52F8"
ARG BUILD_CORES

View File

@ -1,81 +0,0 @@
FROM hoellen/nginx-php:7.3
ARG NEXTCLOUD_VERSION=18.0.14
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \
UPLOAD_MAX_SIZE=10G \
APC_SHM_SIZE=128M \
OPCACHE_MEM_SIZE=128 \
MEMORY_LIMIT=512M \
PHP_MAX_CHILDREN=15 \
PHP_START_SERVERS=2 \
PHP_MIN_SPARE_SERVERS=1 \
PHP_MAX_SPARE_SERVERS=6 \
CRON_PERIOD=15m \
CRON_MEMORY_LIMIT=1g \
TZ=Etc/UTC \
DB_TYPE=sqlite3 \
DOMAIN=localhost \
CHECK_PERMISSIONS=1
RUN apk -U upgrade \
&& apk add -t build-dependencies \
gnupg \
tar \
build-base \
autoconf \
automake \
pcre-dev \
libtool \
samba-dev \
imagemagick-dev \
&& apk add \
libressl \
ca-certificates \
libsmbclient \
imagemagick-libs \
tzdata \
&& pecl channel-update pecl.php.net \
&& pecl install \
smbclient \
apcu \
redis \
imagick \
&& echo "extension=smbclient.so" > /php/conf.d/smbclient.ini \
&& echo "extension=redis.so" > /php/conf.d/redis.ini \
&& echo "extension=imagick.so" > /php/conf.d/imagick.ini \
&& mkdir /nextcloud \
&& cd /tmp \
&& NEXTCLOUD_TARBALL="nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL} \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.sha512 \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.asc \
&& wget -q https://nextcloud.com/nextcloud.asc \
&& echo "Verifying both integrity and authenticity of ${NEXTCLOUD_TARBALL}..." \
&& CHECKSUM_STATE=$(echo -n $(sha512sum -c ${NEXTCLOUD_TARBALL}.sha512) | tail -c 2) \
&& if [ "${CHECKSUM_STATE}" != "OK" ]; then echo "Warning! Checksum does not match!" && exit 1; fi \
&& gpg --import nextcloud.asc \
&& FINGERPRINT="$(LANG=C gpg --verify ${NEXTCLOUD_TARBALL}.asc ${NEXTCLOUD_TARBALL} 2>&1 \
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
&& if [ "${FINGERPRINT}" != "${GPG_nextcloud}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
&& echo "All seems good, now unpacking ${NEXTCLOUD_TARBALL}..." \
&& tar xjf ${NEXTCLOUD_TARBALL} --strip 1 -C /nextcloud \
&& update-ca-certificates \
&& apk del build-dependencies \
&& rm -rf /var/cache/apk/* /tmp/* /root/.gnupg
COPY rootfs /
RUN chmod +x /usr/local/bin/* /etc/s6.d/*/* /etc/s6.d/.s6-svscan/*
VOLUME /data /config /apps2 /nextcloud/themes
EXPOSE 8888
LABEL description="A server software for creating file hosting services" \
nextcloud="Nextcloud v${NEXTCLOUD_VERSION}" \
maintainer="hoellen <info@hoellen.eu>"
CMD ["run.sh"]

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.4
ARG NEXTCLOUD_VERSION=20.0.7
ARG NEXTCLOUD_VERSION=20.0.14
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.4
ARG NEXTCLOUD_VERSION=21.0.0RC2
ARG NEXTCLOUD_VERSION=21.0.7
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \
@ -49,9 +49,9 @@ RUN apk -U upgrade \
&& mkdir /nextcloud \
&& cd /tmp \
&& NEXTCLOUD_TARBALL="nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
&& wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL} \
&& wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL}.sha512 \
&& wget -q https://download.nextcloud.com/server/prereleases/${NEXTCLOUD_TARBALL}.asc \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL} \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.sha512 \
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL}.asc \
&& wget -q https://nextcloud.com/nextcloud.asc \
&& echo "Verifying both integrity and authenticity of ${NEXTCLOUD_TARBALL}..." \
&& CHECKSUM_STATE=$(echo -n $(sha512sum -c ${NEXTCLOUD_TARBALL}.sha512) | tail -c 2) \

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php:7.3
FROM hoellen/nginx-php:7.4
ARG NEXTCLOUD_VERSION=19.0.8
ARG NEXTCLOUD_VERSION=22.2.3
ARG GPG_nextcloud="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"
ENV UID=991 GID=991 \
@ -35,6 +35,7 @@ RUN apk -U upgrade \
ca-certificates \
libsmbclient \
imagemagick \
libgomp \
ffmpeg \
tzdata \
&& pecl channel-update pecl.php.net \

View File

@ -21,10 +21,12 @@
- Environment variables provided (see below).
### Tags
- **latest** : latest stable version (20.0)
- **20.0** : latest 20.0.x version (stable)
- **19.0** : latest 19.0.x version (old stable)
- **18.0** : latest 18.0.x version (deprecated)
- **latest** : latest stable version (22.1)
- **22.1** : latest 22.1.x version (stable)
- **21.0** : latest 21.0.x version (old stable)
- **20.0** : latest 20.0.x version (deprecated)
- ~~**19.0** : latest 19.0.x version (end-of-life)~~
- ~~**18.0** : latest 18.0.x version (end-of-life)~~
- ~~**17.0** : latest 17.0.x version (end-of-life)~~
- ~~**16.0** : latest 16.0.x version (end-of-life)~~
- ~~**15.0** : latest 15.0.x version (end-of-life)~~

View File

@ -1,4 +1,5 @@
extension=apcu.so
apc.enabled=1
apc.enable_cli=1
apc.shm_size=<APC_SHM_SIZE>
apc.ttl=7200

View File

@ -1,9 +1,9 @@
FROM alpine:3.13
FROM alpine:3.14
ARG BUILD_CORES
ARG NGINX_VER=1.18.0
ARG PHP_VER=7.3.27
ARG NGINX_VER=1.20.1
ARG PHP_VER=7.3.32
ARG LIBICONV_VERSION=1.16
LABEL description="nginx + php image based on Alpine" \

View File

@ -1,9 +1,9 @@
FROM alpine:3.13
FROM alpine:3.14
ARG BUILD_CORES
ARG NGINX_VER=1.18.0
ARG PHP_VER=7.4.15
ARG NGINX_VER=1.20.1
ARG PHP_VER=7.4.25
ARG LIBICONV_VERSION=1.16
LABEL description="nginx + php image based on Alpine" \

View File

@ -1,6 +1,6 @@
FROM hoellen/nginx-php
ARG PRIVATEBIN_VER=1.3.4
ARG PRIVATEBIN_VER=1.3.5
ENV GID=991 UID=991 \
UPLOAD_MAX_SIZE=10M \

View File

@ -1,6 +1,6 @@
FROM alpine:3.13
ARG VERSION=0.18.0
ARG VERSION=1.0.0
ENV BASE_URL=False IMAGE_PROXY=False \
UID=991 GID=991
@ -12,6 +12,8 @@ RUN apk -U upgrade \
libffi-dev \
libxslt-dev \
libxml2-dev \
protoc \
protobuf-dev \
openssl-dev \
tar \
ca-certificates \
@ -19,6 +21,7 @@ RUN apk -U upgrade \
su-exec \
python3 \
py-pip \
protobuf \
libxml2 \
libxslt \
openssl \