ci: do not run update.sh, add version folders instead
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Mauro Torrez
2019-09-23 01:12:53 -03:00
parent 9afc672a6c
commit 6f6e6d8156
29 changed files with 984 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
<?php
if (getenv('REDIS_HOST')) {
$CONFIG = array (
'memcache.distributed' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => getenv('REDIS_HOST'),
'port' => getenv('REDIS_HOST_PORT') ?: 6379,
'password' => getenv('REDIS_HOST_PASSWORD'),
),
);
}