docker-images-php
docker-images-php copied to clipboard
A set of PHP Docker images
## Expected Behavior Email is being sent. ## Current Behavior Email isn't being sent. ## Context When i use the mail() function the email isn't being sent. I have a...
Due to permission issues, I need to run a few of my scripts as `www-data` (e.g. via `sudo -E -u www-data php artisan ...`). This currently triggers an error message,...
Hello everyone ! First, thank for your work :) I'm Using the thecodingmachine/php:7.4-v4-fpm image for a project on Symfony. I activate the ext-imagick extension in my composer.json and PHP_EXTENSION_IMAGICK in...
When running in foreground mode the SIGWINCH signal is simple being ignored by Apache2. By switching to background mode and listening to the SIGTERM signal which then executes a graceful...
## Expected Behavior Some stuff in PHP depends heavily on locales, so I'd expect locales to be supported by a general-purpose PHP container. ## Current Behavior I need to create...
It appears that the FPM images use `php-fpm` as their entry point, indicating that they only launch the FPM service but do not support serving HTTP requests directly. Is that...
Happy user of the v2 images trying to migrate to v3 here. With v2, I built two custom PHP extensions using the following Dockerfile snippet: ```Dockerfile FROM thecodingmachine/php:7.3-v2-apache as ext_builder...
Is there a way to change the app dir for php-fpm to /var/www? Also: Can I setup a second pool? We're running Wordpress with different RAM levels etc. for admin...
A common need for test containers is to be protected by HTTP Basic authentication. We could add support for a simple environment variable that enables configuring .htpasswd file.
It is a quite common need to add a Github access token to Composer. It could be interesting to have an environment variable that does this automatically. ``` GITHUB_ACCESS_TOKEN: foobar...