9a34c5051f
Fix service container host name check current folder fix redis for integration test Fix more hostnames Signed-off-by: Morris Jobke <hey@morrisjobke.de>
12 lines
243 B
PHP
12 lines
243 B
PHP
<?php
|
|
|
|
$CONFIG = [
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'redis' => [
|
|
'host' => 'cache',
|
|
'port' => 6379,
|
|
'timeout' => 0,
|
|
],
|
|
];
|