Interesting findings. I already migrated to PHP 8.0, so I now hear that was a good choice. 🙂
In my Dockerfile I have:
# Bind Apache User with our User
RUN usermod –non-unique –uid 1000 www-data
RUN groupmod –non-unique –gid 1000 www-data
RUN chown -hR www-data:www-data /var/www/html
RUN chmod -R 755 /var/www/html
So theoretically it should work…
But it sounds like an access-rights problem. I’ve tried to chmod 777 it. And…. that failed too. Exactly the same problems 🙁