0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-26 13:10:54 +02:00

Runs update.sh

This commit is contained in:
GitHub Workflow 2024-04-24 00:28:00 +00:00
parent f23d5d3ab4
commit f7b20139eb
42 changed files with 2010 additions and 1 deletions

View file

@ -0,0 +1,17 @@
<?php
if (getenv('REDIS_HOST')) {
$CONFIG = array(
'memcache.distributed' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => getenv('REDIS_HOST'),
'password' => (string) getenv('REDIS_HOST_PASSWORD'),
),
);
if (getenv('REDIS_HOST_PORT') !== false) {
$CONFIG['redis']['port'] = (int) getenv('REDIS_HOST_PORT');
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}
}