Compare commits

..

5 Commits

Author SHA1 Message Date
Nick Lopez 68f0a26f13 add PHP Archive module needed by the occ upgrade process 2019-01-24 21:37:06 -08:00
Alex Phillips f265df7cbd Merge pull request #54 from tomtom5152/patch-1
Add imagemagick support for dynamic icon generation.
2018-12-17 15:03:03 -05:00
Alex Phillips 4682702c63 Merge pull request #72 from linuxserver/increased-memory-limit
increased php memory_limit per nextcloud's warnings
2018-12-11 15:13:42 -05:00
alex-phillips b93694ff8d increased php memory_limit per nextcloud's warnings 2018-12-11 14:09:50 -05:00
Tom Price d08683b5a7 Add imagemagick support for dynamic icon generation.
Install the additional packages required to support [theme icon generation](https://docs.nextcloud.com/server/13/admin_manual/configuration_server/theming.html#theming-of-icons).
2018-04-03 21:39:17 +01:00
+4
View File
@@ -26,6 +26,7 @@ RUN \
apk add --no-cache \
curl \
ffmpeg \
imagemagick \
libxml2 \
php7-apcu \
php7-bz2 \
@@ -37,6 +38,7 @@ RUN \
php7-gd \
php7-gmp \
php7-iconv \
php7-imagick \
php7-imap \
php7-intl \
php7-ldap \
@@ -48,6 +50,7 @@ RUN \
php7-pdo_pgsql \
php7-pdo_sqlite \
php7-pgsql \
php7-phar \
php7-posix \
php7-redis \
php7-sqlite3 \
@@ -75,6 +78,7 @@ RUN \
-e 's/;opcache.save_comments.*=.*/opcache.save_comments=1/g' \
-e 's/;opcache.revalidate_freq.*=.*/opcache.revalidate_freq=1/g' \
-e 's/;always_populate_raw_post_data.*=.*/always_populate_raw_post_data=-1/g' \
-e 's/memory_limit.*=.*128M/memory_limit=512M/g' \
/etc/php7/php.ini && \
sed -i \
'/opcache.enable=1/a opcache.enable_cli=1' \