Added nextcloud 18
This commit is contained in:
parent
5871baee0b
commit
5bb5633401
21
fpm-alpine/18/Dockerfile
Normal file
21
fpm-alpine/18/Dockerfile
Normal 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
|
6
fpm-alpine/18/build
Executable file
6
fpm-alpine/18/build
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker pull nextcloud:18-fpm-alpine
|
||||
docker build $1\
|
||||
-t bkraul/nextcloud:18-fpm-alpine \
|
||||
.
|
4
fpm-alpine/18/push
Executable file
4
fpm-alpine/18/push
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker push bkraul/nextcloud:18-fpm-alpine
|
||||
|
8
fpm-alpine/18/redis.config.php
Normal file
8
fpm-alpine/18/redis.config.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
),
|
||||
);
|
38
fpm/18/Dockerfile
Normal file
38
fpm/18/Dockerfile
Normal file
|
@ -0,0 +1,38 @@
|
|||
FROM nextcloud:18-fpm
|
||||
|
||||
RUN set -ex \
|
||||
usermod -u 82 www-data; \
|
||||
groupmod -g 82 www-data; \
|
||||
usermod -g 82 www-data; \
|
||||
# for some reason this needs to be repeated.
|
||||
usermod -u 82 www-data; \
|
||||
chown -R www-data:root /var/www; \
|
||||
chmod -R g=u /var/www
|
||||
|
||||
RUN set -ex; \
|
||||
apt-get update; \
|
||||
apt-get install -y \
|
||||
libmagickcore-6.q16-3-extra; \
|
||||
rm -rf /var/lib/apt/lists/*;
|
||||
|
||||
RUN set -ex; \
|
||||
savedAptMark="$(apt-mark showmanual)"; \
|
||||
apt-get update; \
|
||||
apt-get install -y libsmbclient-dev; \
|
||||
pecl install smbclient; \
|
||||
docker-php-ext-enable smbclient; \
|
||||
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
|
||||
apt-mark auto '.*' > /dev/null; \
|
||||
apt-mark manual $savedAptMark; \
|
||||
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \
|
||||
| awk '/=>/ { print $3 }' \
|
||||
| sort -u \
|
||||
| xargs -r dpkg-query -S \
|
||||
| cut -d: -f1 \
|
||||
| sort -u \
|
||||
| xargs -rt apt-mark manual; \
|
||||
\
|
||||
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php
|
6
fpm/18/build
Executable file
6
fpm/18/build
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker pull nextcloud:18-fpm
|
||||
docker build $1\
|
||||
-t bkraul/nextcloud:18-fpm \
|
||||
.
|
4
fpm/18/push
Executable file
4
fpm/18/push
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker push bkraul/nextcloud:18-fpm
|
||||
|
8
fpm/18/redis.config.php
Normal file
8
fpm/18/redis.config.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
),
|
||||
);
|
Loading…
Reference in New Issue
Block a user