Merge pull request #2 from sparklyballs/opcache

add php5-opcache dependency
This commit is contained in:
j0nnymoe 2016-08-29 20:55:04 +01:00 committed by GitHub
commit 58bff1bf44
4 changed files with 13 additions and 3 deletions

View File

@ -10,6 +10,7 @@ RUN \
php5-dom \
php5-gd \
php5-intl \
php5-opcache \
php5-openssl \
php5-pdo_sqlite

View File

@ -93,5 +93,6 @@ Unlike other implementations of COPS in a docker container, the linuxserver ver
## Version Log
+ + **28.08.16:** Add badges to README.
+ + **12.08.16:** Release
+ **29.08.16:** Add php5-opcache.
+ **28.08.16:** Add badges to README.
+ **12.08.16:** Release

View File

@ -33,7 +33,11 @@
*/
$config['cops_x_accel_redirect'] = "X-Accel-Redirect";
/* Enable cache folder
* especially useful for lower power hosts
*/
$config['cops_thumbnail_handling'] = "";
$config['cops_thumbnail_cache_directory'] = "/config/cache/";
/*
* Enable and configure Send To Kindle (or Email) feature.
*

View File

@ -1,5 +1,9 @@
#!/usr/bin/with-contenv bash
# create folders
mkdir -p \
/config/cache
# make symlink
[[ ! -e /var/www/localhost/cops ]] && \
ln -s /usr/share/webapps/cops /var/www/localhost/cops