Added support for fpm (debian buster)

This commit is contained in:
2019-11-27 12:38:45 -06:00
parent e794a963e8
commit 5871baee0b
15 changed files with 115 additions and 19 deletions
+39
View File
@@ -0,0 +1,39 @@
FROM nextcloud:17-fpm
MAINTAINER Belman Kraul <bkraul@belmankraul.com>
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
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
docker pull nextcloud:17-fpm
docker build $1 \
-t bkraul/nextcloud:17-fpm \
.
Executable
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
docker push bkraul/nextcloud:17-fpm
+8
View File
@@ -0,0 +1,8 @@
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);