Compare commits
2 Commits
34ff0135d9
...
4ee1cf73f1
Author | SHA1 | Date | |
---|---|---|---|
4ee1cf73f1 | |||
5466e98fb4 |
8
13.0/fpm-alpine/config/redis.config.php
Normal file
8
13.0/fpm-alpine/config/redis.config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
),
|
||||
);
|
@ -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"]
|
||||
|
@ -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
|
||||
|
8
13.0/fpm/config/redis.config.php
Normal file
8
13.0/fpm/config/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