Added nextcloud 18

This commit is contained in:
2020-02-15 19:46:03 -06:00
parent 5871baee0b
commit 5bb5633401
8 changed files with 95 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM nextcloud:18-fpm-alpine
RUN set -ex; \
apk add --no-cache --virtual .build-deps \
autoconf \
automake \
file \
g++ \
gcc \
make \
php7-dev \
re2c \
samba-dev \
zlib-dev; \
apk add --no-cache libsmbclient; \
pecl install smbclient; \
docker-php-ext-enable smbclient; \
apk add --no-cache imagemagick; \
apk del .build-deps
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php