optior
optior
https://github.com/symfony/ux/pull/20 should solve this issue.
I have the same problem. But I noticed that the error only occurs when I run this command inside a docker container, when I mount my local filesystem into the...
@helhum I created a reproducer repository: https://github.com/optior/typo3-console-reproducer. Just run `docker compose up -d`, php container won't start because it will hang while clearing the cache. IIRC it's a folder inside...
@helhum On what platform are you using docker? And which version of docker? Locally this works fine for me as well. Also when mounting the local folder into the docker...
@helhum I added echo statements to `flush` method of `typo3/sysext/core/Classes/Cache/Backend/SimpleFileBackend.php`: ```php public function flush() { $directory = $this->cacheDirectory; if (is_link($directory)) { // Avoid attempting to rename the symlink see #87367...
@helhum Thanks for the information. I solved the issue today, turned out that I have to clear the var-folder (`rm -rf var/*`) after calling `composer install` in the multi-stage Dockerfile....