diff --git a/deploy.php b/deploy.php index 701a8b6..faeeff9 100644 --- a/deploy.php +++ b/deploy.php @@ -39,6 +39,11 @@ task('docker:restart', function () { run('docker restart mangarr'); }); +// Pas de PHP sur l'hôte : désactiver les tâches Symfony qui en ont besoin +// Le cache et les migrations sont gérés par l'entrypoint.sh au démarrage du container +task('deploy:cache:clear', function () {}); +task('deploy:cache:warmup', function () {}); + // Hooks after('deploy:vendors', 'webpack_encore:build'); after('deploy:symlink', 'docker:restart');