Skip to content

Commit 4f5b27b

Browse files
added php-8.5.2
1 parent 02376d5 commit 4f5b27b

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN abuild checksum && abuild -r
7777

7878
FROM alpine-distro AS php-zts-base
7979

80-
ARG PHP_VERSION="8.5.1"
80+
ARG PHP_VERSION="8.5.2"
8181
ARG PHP_PACKAGE_BASENAME="phpzts85"
8282
ARG PHP_PACKAGE_INCLUDE="/usr/include/php85"
8383
ARG PHP_FPM_BINARY_PATH="/usr/sbin/php-fpmzts85"

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $ echo '<?php phpinfo();' > public/index.php
1212
### Run the NGINX Unit Version
1313

1414
```shell
15-
$ docker run --rm -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.1-zts-unit
15+
$ docker run --rm -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.2-zts-unit
1616
```
1717

1818
and open http://localhost:8080 to see phpinfo unit.
@@ -26,7 +26,7 @@ Time per request: 23.207 [ms] (mean)
2626
### Run the Apache2 Version
2727
2828
```shell
29-
$ docker run --rm -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.1-zts-apache2
29+
$ docker run --rm -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.2-zts-apache2
3030
```
3131
3232
and open http://localhost:8080 to see phpinfo on apache2.
@@ -48,15 +48,15 @@ version: "2.1"
4848

4949
services:
5050
php-cli:
51-
image: endava/php:8.5.1-zts
51+
image: endava/php:8.5.2-zts
5252
volumes:
5353
- ./:/usr/src/app
5454
user: "${UID-www-data}:${GID-www-data}"
5555
entrypoint: bash
5656
depends_on:
5757
- nginx
5858
php-fpm:
59-
image: endava/php:8.5.1-zts-fpm
59+
image: endava/php:8.5.2-zts-fpm
6060
user: "${UID-www-data}:${GID-www-data}"
6161
volumes:
6262
- ./:/usr/src/app
@@ -99,10 +99,10 @@ $docker-compose run php-cli
9999
⠿ Container docker-php-php-fpm-1
100100
⠿ Container docker-php-nginx-1
101101
bash-5.1$ php -v
102-
PHP 8.5.1 (cli) (built: Jan 9 2026 22:38:51) (ZTS)
102+
PHP 8.5.2 (cli) (built: Jan 9 2026 22:38:51) (ZTS)
103103
Copyright (c) The PHP Group
104104
Zend Engine v4.5.1, Copyright (c) Zend Technologies
105-
with Zend OPcache v8.5.1, Copyright (c), by Zend Technologies
105+
with Zend OPcache v8.5.2, Copyright (c), by Zend Technologies
106106
with Xdebug v3.5.0, Copyright (c) 2002-2026, by Derick Rethans
107107
```
108108
@@ -111,7 +111,7 @@ and open http://localhost:8080/ to see phpinfo with FPM/FastCGI as server api.
111111
### Run the frankenphp https Version
112112
113113
```shell
114-
$ docker run --rm -p 8443:443 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.1-zts-frankenphp
114+
$ docker run --rm -p 8443:443 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.2-zts-frankenphp
115115
```
116116
117117
and open https://localhost:8443/ to see phpinfo with frankenphp as server api.
@@ -127,7 +127,7 @@ Time per request: 21.920 [ms] (mean)
127127
### Run the frankenphp http Version
128128
129129
```shell
130-
$ docker run --rm -e SERVER_NAME=http://:8080 -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.1-zts-frankenphp
130+
$ docker run --rm -e SERVER_NAME=http://:8080 -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.2-zts-frankenphp
131131
```
132132
133133
and open https://localhost:8443/ to see phpinfo with frankenphp as server api.
@@ -143,7 +143,7 @@ Time per request: 21.920 [ms] (mean)
143143
### Run the frankenphp http worker Version
144144
145145
```shell
146-
$ docker run --rm -e FRANKENPHP_CONFIG="worker ./public/index.php" -e SERVER_NAME=http://:8080 -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.1-zts-frankenphp
146+
$ docker run --rm -e FRANKENPHP_CONFIG="worker ./public/index.php" -e SERVER_NAME=http://:8080 -p 8080:8080 -v `pwd`/public:/usr/src/app/public -it endava/php:8.5.2-zts-frankenphp
147147
```
148148
149149
and index.php like this:
@@ -317,7 +317,7 @@ You can define the crontab's content with an environment variable like this:
317317
```yaml
318318
services:
319319
import-data-cron:
320-
image: endava/php:8.5.1-zts
320+
image: endava/php:8.5.2-zts
321321
command: start-cron
322322
environment:
323323
- 'CRONTAB_USER=www-data'
@@ -361,7 +361,7 @@ Usage in your `docker-compose.yml`:
361361
```yaml
362362
services:
363363
crontab:
364-
image: endava/php:8.5.1-zts
364+
image: endava/php:8.5.2-zts
365365
command: start-cron
366366
volumes:
367367
- ./:/usr/src/app
@@ -374,7 +374,7 @@ cron location with the `CRON_PATH` environment variable:
374374
```yaml
375375
services:
376376
crontab:
377-
image: endava/php:8.5.1-zts
377+
image: endava/php:8.5.2-zts
378378
command: start-cron
379379
environment:
380380
- CRON_PATH=/usr/src/app/crontabs

0 commit comments

Comments
 (0)