You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-30Lines changed: 30 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,17 +51,17 @@ This setup allows for faster project initiation without additional installations
51
51
52
52
## Docker Image Variants
53
53
54
-
Our image tags cover PHP versions from 5.6 to 8.5 (beta),
54
+
Our image tags cover PHP versions from 5.6 to 8.5,
55
55
available in `cli`, `zts`, `fpm`, `fpm-nginx`, `fpm-apache`, `roadrunner`<sup>(1)</sup>, and `frankenphp`<sup>(2)</sup> variants. The Docker images are available for both Debian and Alpine versions.
56
56
57
57
Examples:
58
-
-`shinsenter/php:7.2-cli`
59
-
-`shinsenter/php:7.3-zts`
60
-
-`shinsenter/php:7.4-fpm`
61
-
-`shinsenter/php:8.0-fpm-apache`
62
-
-`shinsenter/php:8.1-fpm-nginx`
63
-
-`shinsenter/php:8.2-roadrunner` <sup>(1)</sup>
64
-
-`shinsenter/php:8.3-frankenphp` <sup>(2)</sup>
58
+
-`shinsenter/php:8.3-cli`
59
+
-`shinsenter/php:8.4-zts`
60
+
-`shinsenter/php:8.5-fpm`
61
+
-`shinsenter/php:8.1-fpm-apache`
62
+
-`shinsenter/php:8.2-fpm-nginx`
63
+
-`shinsenter/php:8.3-roadrunner` <sup>(1)</sup>
64
+
-`shinsenter/php:8.4-frankenphp` <sup>(2)</sup>
65
65
66
66
> <sup>(1)</sup>: PHP with RoadRunner server. The `roadrunner` variant supports PHP >= 8.0.<br>
67
67
> <sup>(2)</sup>: FrankenPHP is still in BETA. The `frankenphp` variant supports PHP >= 8.2.<br>
@@ -78,34 +78,34 @@ You can easily run a container by copying and pasting one of these `docker run`
78
78
79
79
```shell
80
80
# non-interactive
81
-
docker run --rm shinsenter/php:8.4-cli php -m
81
+
docker run --rm shinsenter/php:8.5-cli php -m
82
82
83
83
# interactive
84
-
docker run -it -v ./myproject:/var/www/html shinsenter/php:8.4-cli
84
+
docker run -it -v ./myproject:/var/www/html shinsenter/php:8.5-cli
85
85
```
86
86
87
87
88
88
#### PHP-FPM <!-- omit from toc -->
89
89
90
90
```shell
91
-
docker run -v ./myproject:/var/www/html -p 9000:9000 shinsenter/php:8.4-fpm
91
+
docker run -v ./myproject:/var/www/html -p 9000:9000 shinsenter/php:8.5-fpm
0 commit comments