You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On runtime it's trying to create folders and set permissions in an immutable object, shouldn't this be in the assemble script and not at runtime?
Also there's functional issues such as trying to symlink to the error.log before the mkdir runs on the ${PHP_FPM_LOG_PATH} but the bigger issue is this won't run inside the assembled container as the following output indicates running as non root.
chmod: changing permissions of '/run/php-fpm': Operation not permitted
chown: changing ownership of '/run/php-fpm': Operation not permitted
chmod: changing permissions of '/var/log/php-fpm': Operation not permitted
chown: changing ownership of '/var/log/php-fpm/error.log': Operation not permitted
chown: changing ownership of '/var/log/php-fpm': Operation not permitted
The text was updated successfully, but these errors were encountered:
@remicollet Can you please provide to @paulbadcock why mod_php on RHEL8 is enabled instead of FPM? Personally, I could not find this information. It could be added to the README.md.
@paulbadcock Is it related to RHEL8 or RHEL9? I can not find this information in the issue. Do you have a Bugzilla?
@remicollet Can you please provide to @paulbadcock why mod_php on RHEL8 is enabled instead of FPM? Personally, I could not find this information. It could be added to the README.md.
@paulbadcock Is it related to RHEL8 or RHEL9? I can not find this information in the issue. Do you have a Bugzilla?
Logic issues with the following
https://github.com/sclorg/s2i-php-container/blob/master/8.1/s2i/bin/run#L59-L68
On runtime it's trying to create folders and set permissions in an immutable object, shouldn't this be in the assemble script and not at runtime?
Also there's functional issues such as trying to symlink to the error.log before the mkdir runs on the ${PHP_FPM_LOG_PATH} but the bigger issue is this won't run inside the assembled container as the following output indicates running as non root.
The text was updated successfully, but these errors were encountered: