Compare commits

...

2 Commits

Author SHA1 Message Date
adphi 4ee1cf73f1 Add redis conf to fpm-alpine 2018-05-09 12:57:04 +02:00
adphi 5466e98fb4 Removed MYSQL_ROOT env vars after db initialization 2018-05-09 11:49:26 +02:00
4 changed files with 23 additions and 3 deletions

View File

@ -0,0 +1,8 @@
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);

View File

@ -90,13 +90,13 @@ RUN { \
echo 'opcache.revalidate_freq=1'; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini; \
\
mkdir /var/www/data; \
mkdir /data; \
chown -R www-data:root /data; \
chown -R www-data:root /var/www; \
chmod -R g=u /var/www
VOLUME /var/www/html
ENV NEXTCLOUD_VERSION 13.0.2
RUN set -ex; \
@ -118,6 +118,7 @@ RUN set -ex; \
COPY *.sh /
COPY config/* /usr/src/nextcloud/config/
#HEALTHCHECK --interval=1s --timeout=3s --retries=16 \
#CMD test $(ps ax | grep php-fpm | grep -v grep | wc -l) -gt 0 && echo okay
ENTRYPOINT ["/entrypoint.sh"]
CMD ["php-fpm"]

View File

@ -12,6 +12,9 @@ if (getenv('SQLITE_DATABASE')) {
$password = getenv('MYSQL_PASSWORD');
$database = getenv('MYSQL_DATABASE');
$host = getenv('MYSQL_HOST');
// Erase root environment variables
putenv('MYSQL_ROOT_USER');
putenv('MYSQL_ROOT_PASSWORD');
// Create connection
$connection = new mysqli($host, $root_user, $root_password);
// Check connection

View File

@ -0,0 +1,8 @@
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);