php
php copied to clipboard
Docker Official Image packaging for PHP
This allows us to completely remove the `php-fpm.conf` hacks by having PHP do the right thing by default instead. There's a lot of overlap here with https://github.com/docker-library/php/pull/1635, which is not...
Today you can build an image with this `Dockerfile`: ```dockerfile FROM php:8.4.15-cli-alpine RUN docker-php-ext-install opcache ``` But if you change `php:8.4.15-cli-alpine` to `php:8.5.0-cli-alpine` you will have a strange error: ```shell...
I am using php:8.4-fpm-alpine3.22 For the sake of simplicity I want to use php cli and php-fpm using the same container. However I need different configurations, for example setting memory_limit....
The Debian Bullseye release is currently in LTS until 2026-08-31, which means it still has about a year of official support left. > https://www.debian.org/releases/ The concern is that support for...
Hi, not sure if this is a problem and/or intentional, but /etc/services does not exist in the container and results in this error. ``` root@b8ed6d7b6ee4:/# ftp ftp.mydomain.com ftp: Can't lookup...
Hey there, is there a way to configure different php.ini files for CLI and FPM on 8.4-fpm image?
I've just encountered an issue whereby our `FallbackResource` is applied correctly, except where the URL requested ends in `.php`. For example: - http://localhost/example.html => Uses FallbackResource - http://localhost/example.php => Does...