1- # Docker PHP-FPM 8.4 & Nginx 1.28 on Alpine Linux
2- Example PHP-FPM 8.4 & Nginx 1.28 container image for Docker, built on [ Alpine Linux] ( https://www.alpinelinux.org/ ) .
1+ # Docker PHP-FPM 8.5 & Nginx 1.28 on Alpine Linux
2+ Example PHP-FPM 8.5 & Nginx 1.28 container image for Docker, built on [ Alpine Linux] ( https://www.alpinelinux.org/ ) .
33
44Repository: https://github.com/TrafeX/docker-php-nginx
55
66
77* Built on the lightweight and secure Alpine Linux distribution
88* Multi-platform, supporting AMD4, ARMv6, ARMv7, ARM64
99* Very small Docker image size (+/-40MB)
10- * Uses PHP 8.4 for the best performance, low CPU usage & memory footprint
10+ * Uses PHP 8.5 for the best performance, low CPU usage & memory footprint
1111* Optimized for 100 concurrent users i.e. limits the concurrent requests serving php files
1212* Optimized to only use resources when there's traffic (by using PHP-FPM's ` on-demand ` process manager)
1313* The services Nginx, PHP-FPM and supervisord run under a non-privileged user (nobody) to make it more secure
@@ -16,7 +16,7 @@ Repository: https://github.com/TrafeX/docker-php-nginx
1616
1717[ ![ Docker Pulls] ( https://img.shields.io/docker/pulls/trafex/php-nginx.svg )] ( https://hub.docker.com/r/trafex/php-nginx/ )
1818![ nginx 1.28] ( https://img.shields.io/badge/nginx-1.28-brightgreen.svg )
19- ![ php 8.4 ] ( https://img.shields.io/badge/php-8.4 -brightgreen.svg )
19+ ![ php 8.5 ] ( https://img.shields.io/badge/php-8.5 -brightgreen.svg )
2020![ License MIT] ( https://img.shields.io/badge/license-MIT-blue.svg )
2121
2222## [ ![ Trafex Consultancy] ( https://timdepater.com/logo/mini-logo.png )] ( https://timdepater.com?mtm_campaign=github )
@@ -57,11 +57,11 @@ Nginx configuration:
5757
5858PHP configuration:
5959
60- docker run -v "`pwd`/php-setting.ini:/etc/php84 /conf.d/settings.ini" trafex/php-nginx
60+ docker run -v "`pwd`/php-setting.ini:/etc/php85 /conf.d/settings.ini" trafex/php-nginx
6161
6262PHP-FPM configuration:
6363
64- docker run -v "`pwd`/php-fpm-settings.conf:/etc/php84 /php-fpm.d/server.conf" trafex/php-nginx
64+ docker run -v "`pwd`/php-fpm-settings.conf:/etc/php85 /php-fpm.d/server.conf" trafex/php-nginx
6565
6666_ Note; Because ` -v ` requires an absolute path I've added ` pwd ` in the example to return the absolute path to the current directory_
6767
@@ -71,4 +71,4 @@ To modify this container to your specific needs please see the following example
7171* [ Adding xdebug support] ( https://github.com/TrafeX/docker-php-nginx/blob/master/docs/xdebug-support.md )
7272* [ Adding composer] ( https://github.com/TrafeX/docker-php-nginx/blob/master/docs/composer-support.md )
7373* [ Getting the real IP of the client behind a load balancer] ( https://github.com/TrafeX/docker-php-nginx/blob/master/docs/real-ip-behind-loadbalancer.md )
74- * [ Sending e-mails] ( https://github.com/TrafeX/docker-php-nginx/blob/master/docs/sending-emails.md )
74+ * [ Sending e-mails] ( https://github.com/TrafeX/docker-php-nginx/blob/master/docs/sending-emails.md )
0 commit comments