remove dangling images

This commit is contained in:
Andras Bacsai
2023-04-28 09:00:47 +02:00
parent befc51beec
commit a7c4e06bc3
3 changed files with 46 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Console;
use App\Jobs\ContainerStatusJob;
use App\Jobs\DockerCleanupDanglingImagesJob;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
@@ -13,7 +14,8 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule): void
{
$schedule->job(new ContainerStatusJob)->everyMinute();
$schedule->job(new ContainerStatusJob)->everyFiveMinutes();
$schedule->job(new DockerCleanupDanglingImagesJob)->everyMinute();
}
/**
@@ -21,7 +23,7 @@ class Kernel extends ConsoleKernel
*/
protected function commands(): void
{
$this->load(__DIR__.'/Commands');
$this->load(__DIR__ . '/Commands');
require base_path('routes/console.php');
}