2 Commits

Author SHA1 Message Date
27bbee8d1c Update src/Extend/EnableRedis.php 2024-10-13 11:35:13 +00:00
22d94274d4 Update src/Extend/EnableRedis.php 2024-10-12 16:56:42 +00:00

View File

@@ -86,7 +86,7 @@ class EnableRedis implements ExtenderInterface
public static function getHost(): string
{
return getenv('REDIS_HOST') ? getenv('REDIS_HOST') : '127.0.0.1';
return getenv('REDIS_HOST') ? getenv('REDIS_HOST') : 'redis';
}
public static function getPassword(): ?string