mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
// increase memory limit to 2GB
|
|
ini_set('memory_limit', '2048M');
|
|
|
|
use DI\Container;
|
|
use AIO\Data\DataConst;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
$container = \AIO\DependencyInjection::GetContainer();
|
|
|
|
/** @var \AIO\Docker\DockerActionManager $dockerActionManger */
|
|
$dockerActionManger = $container->get(\AIO\Docker\DockerActionManager::class);
|
|
/** @var \AIO\ContainerDefinitionFetcher $containerDefinitionFetcher */
|
|
$containerDefinitionFetcher = $container->get(\AIO\ContainerDefinitionFetcher::class);
|
|
|
|
$id = 'nextcloud-aio-nextcloud';
|
|
$nextcloudContainer = $containerDefinitionFetcher->GetContainerById($id);
|
|
|
|
$df = disk_free_space(DataConst::GetDataDirectory());
|
|
if ($df !== false && (int)$df < 1024 * 1024 * 1024 * 5) {
|
|
error_log("The drive that hosts the mastercontainer volume has less than 5 GB free space. Container updates and backups might not succeed due to that!");
|
|
$dockerActionManger->sendNotification($nextcloudContainer, 'Low on space!', 'The drive that hosts the mastercontainer volume has less than 5 GB free space. Container updates and backups might not succeed due to that!');
|
|
}
|