Skip to content

Commit

Permalink
PHP 8.3 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
arnested committed Nov 28, 2023
1 parent 4847388 commit afb88d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG php="8.2"
FROM php:8.0-fpm-alpine@sha256:173daec831fa47844c876258a19741c7a1928524b5e1936a2b1e7c1f58ec1b12 AS php8.0
FROM php:8.1-fpm-alpine@sha256:53b41cf30f082d8d6f05ae6c718226e230805b309045fbfc40732907829be123 AS php8.1
FROM php:8.2-fpm-alpine@sha256:c0fca44d0e3f6bf9555bb8bafa2402fe278f0f947afc4a30729deba5e3f50410 AS php8.2
FROM php:8.3-rc-fpm-alpine@sha256:48fbacff674ac0f63aa5c06faac0eef3d8c2d529f99bb2a4aea2c496db29b4e7 AS php8.3
FROM php:8.3-fpm-alpine@sha256:707412975e1e993a526ad8f5ac98a53ce7e2d1fdd2fa2681c4ba6ee8b3c0f4cc AS php8.3

## Helper images
FROM blackfire/blackfire:2@sha256:8e29a1ea0ff2500e196881650f9826ebf27aa763cc7edeb750a145b73ac49cf2 AS blackfire
Expand Down
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FPM like this:
```yaml
services:
php:
image: 'ghcr.io/reload/php-fpm:8.2'
image: 'ghcr.io/reload/php-fpm:8.3'
ports:
- '9000'
user: '${UID:-501}:${GID:-20}'
Expand All @@ -26,10 +26,7 @@ services:
## PHP versions
We provide PHP 8.0, 8.1, and 8.2 images.
PHP 7.x versions are no longer supported upstream, so we won't provide
them either.
We provide PHP 8.0, 8.1, 8.2 and 8.3 images.
The images are based on the official [`php:8.x-fpm-alpine` Docker
images](https://hub.docker.com/_/php). We build new images when new
Expand Down Expand Up @@ -178,7 +175,7 @@ feature `update-ca-certificates`.
```yaml
services:
php:
image: 'ghcr.io/reload/php-fpm:8.2'
image: 'ghcr.io/reload/php-fpm:8.3'
volumes:
- '.:/var/www'
- './my-ca.pem:/usr/local/share/ca-certificates/my-ca.pem:ro'
Expand Down Expand Up @@ -217,7 +214,7 @@ the original Blackfire image.

```yaml
php:
image: 'ghcr.io/reload/php-fpm:8.2'
image: 'ghcr.io/reload/php-fpm:8.3'
environment:
BLACKFIRE_CLIENT_ID: <your client key>
BLACKFIRE_CLIENT_TOKEN: <your client token>
Expand All @@ -242,7 +239,7 @@ For simple development setups, we recommend combining it with

```yaml
php:
image: 'ghcr.io/reload/php-fpm:8.2'
image: 'ghcr.io/reload/php-fpm:8.3'
environment:
SMTPSERVER: 'mail'
mail:
Expand Down

0 comments on commit afb88d1

Please sign in to comment.