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

@@ -23,6 +23,12 @@ function help {
function queue {
bash vendor/bin/spin exec -u webuser coolify php artisan queue:listen
}
function schedule {
bash vendor/bin/spin exec -u webuser coolify php artisan schedule:work
}
function schedule-run {
bash vendor/bin/spin exec -u webuser coolify php artisan schedule:run
}
function reset-db {
bash vendor/bin/spin exec -u webuser coolify php artisan migrate:fresh --seed
}