s2i-php-container icon indicating copy to clipboard operation
s2i-php-container copied to clipboard

PHP container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running PHP applications. Users can choose between Red...

Results 55 s2i-php-container issues
Sort by recently updated
recently updated
newest added

At the moment none of the env vars are passed to fpm. This will fix it. sed -i "s/.*clear_env.*=.*/clear_env = no/g" /etc/php-fpm.d/www.conf

Signed-off-by: Petr "Stone" Hracek

After setting PHP_MEMORY_LIMIT to `-1` composer still exited with an OOM error. Setting the parameter directly through php fixed the issue

pr/missing-review

see pull request https://github.com/sclorg/s2i-php-container/pull/376

Locally I've tested my code using wodby on PHP 8.1 and 8.0, having a bit of trouble getting the s2i working in openshift/red hat for PHP 8.0, with that said,...

Testsuite fails in In the `tests/run` output: ``` cakephp/plugin-installer contains a Composer plugin which is blocked by your allow-plugins config. You may add it to the list if you consider...

Kubernetes TLS secrets have keys named `tls.crt` containing the certificate and `tls.key` containing the key. It would be great if the base image could get the certificates from the mounted...

ATM I have to modify the builder image to allow other locales: ``` FROM centos/php-73-centos7 USER 0 RUN sed -i '/override_install_langs/s/=.*/=en_US.utf8,en_GB.utf8,de_DE.utf8,fr_FR.utf8,es_ES.utf8,es_MX.utf8/' /etc/yum.conf \ && yum upgrade -y glibc-common \ &&...