1
- # Docker PHP-FPM 8.3 & Nginx 1.26 on Alpine Linux
2
- Example PHP-FPM 8.3 & Nginx 1.26 container image for Docker, built on [ Alpine Linux] ( https://www.alpinelinux.org/ ) .
1
+ # Docker PHP-FPM 8.4 & Nginx 1.26 on Alpine Linux
2
+ Example PHP-FPM 8.4 & Nginx 1.26 container image for Docker, built on [ Alpine Linux] ( https://www.alpinelinux.org/ ) .
3
3
4
4
Repository: https://github.com/TrafeX/docker-php-nginx
5
5
6
6
7
7
* Built on the lightweight and secure Alpine Linux distribution
8
8
* Multi-platform, supporting AMD4, ARMv6, ARMv7, ARM64
9
9
* Very small Docker image size (+/-40MB)
10
- * Uses PHP 8.3 for the best performance, low CPU usage & memory footprint
10
+ * Uses PHP 8.4 for the best performance, low CPU usage & memory footprint
11
11
* Optimized for 100 concurrent users
12
12
* Optimized to only use resources when there's traffic (by using PHP-FPM's ` on-demand ` process manager)
13
13
* 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
16
16
17
17
[ ![ Docker Pulls] ( https://img.shields.io/docker/pulls/trafex/php-nginx.svg )] ( https://hub.docker.com/r/trafex/php-nginx/ )
18
18
![ nginx 1.26] ( https://img.shields.io/badge/nginx-1.26-brightgreen.svg )
19
- ![ php 8.3 ] ( https://img.shields.io/badge/php-8.3 -brightgreen.svg )
19
+ ![ php 8.4 ] ( https://img.shields.io/badge/php-8.4 -brightgreen.svg )
20
20
![ License MIT] ( https://img.shields.io/badge/license-MIT-blue.svg )
21
21
22
22
## [ ![ Trafex Consultancy] ( https://timdepater.com/logo/mini-logo.png )] ( https://timdepater.com?mtm_campaign=github )
@@ -53,11 +53,11 @@ Nginx configuration:
53
53
54
54
PHP configuration:
55
55
56
- docker run -v "`pwd`/php-setting.ini:/etc/php83 /conf.d/settings.ini" trafex/php-nginx
56
+ docker run -v "`pwd`/php-setting.ini:/etc/php84 /conf.d/settings.ini" trafex/php-nginx
57
57
58
58
PHP-FPM configuration:
59
59
60
- docker run -v "`pwd`/php-fpm-settings.conf:/etc/php83 /php-fpm.d/server.conf" trafex/php-nginx
60
+ docker run -v "`pwd`/php-fpm-settings.conf:/etc/php84 /php-fpm.d/server.conf" trafex/php-nginx
61
61
62
62
_ Note; Because ` -v ` requires an absolute path I've added ` pwd ` in the example to return the absolute path to the current directory_
63
63
0 commit comments