docker-php icon indicating copy to clipboard operation
docker-php copied to clipboard

🐳 Production-ready Docker images for PHP. Optimized for Laravel, WordPress, and more!

Results 86 docker-php issues
Sort by recently updated
recently updated
newest added

# Background * PHP-FPM + NGINX as a workaround to avoid PHP Apache sucks # Solution * Using PHP Swoole looks very promising https://developpaper.com/php-fpm-vs-swoole/

⚡️ Enhancement

# Summary - It would be helpful to add tests # Order It would be nice to have each image go through these steps: 1. Setup (Pull base images &...

⚡️ Enhancement

# 🥳 This PR is currently in testing! ### View Latest Source & Documentation (README) View the `dev` branch for the latest source code: https://github.com/serversideup/docker-php/tree/dev ### Access the Docker Images...

⚡️ Enhancement

### Affected Docker Images beta-8.1-fpm-nginx ### Current Behavior When I attempt to bring up my containers, and APP_ENV = production, I receive the following error message: ``` s6-rc: fatal: timed...

🐛 Bug: Confirmed

### Affected Docker Images - 8.2* ### Current Behavior `php8.2-redis` had to be removed in order to build the 8.2 images. #### More detail https://github.com/serversideup/docker-php/issues/60#issuecomment-1259916253 ### Expected Behavior PHP-Redis should...

🐛 Bug: Confirmed

Are there any plans to add PHP 8.2 support? Thanks in advance! _Originally posted by @nsaliu in https://github.com/serversideup/docker-php/issues/59#issuecomment-1250012328_

⚡️ Enhancement

A production ready and optimized PHP image should really have the `opcache` extensions installed by default. The performance gains are [massive](https://arubacao.com/laravel-opcache-performance-benchmark/) (especially for Laravel) and it is just installing the...

### Affected Docker Images serversideup/php:8.2-fpm-nginx ### Docker Labels of the affected images _No response_ ### Current Behavior Cannot run `install-php-extensions` as advertised. ### Expected Behavior Running `install-php-extensions` installs the extension....

🧐 Bug: Needs Confirmation

### Affected Docker Images All ### Current Behavior There are many reports where this error randomly appears, usually on fresh deployments. ``` Failed to open stream: Permission denied ``` ####...

🐛 Bug: Confirmed

Gosu is needed for doing later `command: ["gosu", "www-data", "/usr/local/bin/php", "artisan", "horizon"]` as the _su_ version `command: ["su", "www-data", "-c", "/usr/local/bin/php", "artisan", "horizon"]` won't work due the _www-data_ user having...