Open
Description
I've just upgraded my Laravel 10 project to 11 and have php artisan optimize:clear
as part of my startup script for docker containers, I've noticed that the php artisan icons:clear
seems to crash out, it doesn't specifically return anything, but it locks out any artisan commands from running, I notice in the stdout that IO errors are occuring, the only way to get everything working again is to rebuild the container, rebooting it doesn't seem to change anything.
octane@3896766d6106:/var/www/html$ php artisan
PHP Warning: require(/var/www/html/config/filesystems.php): Failed to open stream: Input/output error in /var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php on line 96
I might just run the individual commands in optimize and leave out the icons:clear
for now, but this doesn't seem to happen in Laravel 10, if it helps I'm running Octane on FrankenPHP, if someone could let me know how to start troubleshooting this that would be great!