Skip to content

Commit d1f327e

Browse files
committed
Fix #393 - Upgrade the image to PHP 8.1
1 parent c59f287 commit d1f327e

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1414
- Allow a different Apache port with `APACHE_PORT` (#340)
1515
- Add support for ENVs `PMA_UPLOADDIR` and `PMA_SAVEDIR` (#384)
1616
- Fixed a bug with `APACHE_PORT` ENV on container restart (#381)
17+
- Update to PHP 8.1 (#393)
1718

1819
## [5.1.4] - 2022-05-11
1920

Dockerfile-alpine.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-%%VARIANT%%
1+
FROM php:8.1-%%VARIANT%%
22

33
# docker-entrypoint.sh dependencies
44
RUN apk add --no-cache \

Dockerfile-debian.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-%%VARIANT%%
1+
FROM php:8.1-%%VARIANT%%
22

33
# Install dependencies
44
RUN set -ex; \

apache/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-apache
1+
FROM php:8.1-apache
22

33
# Install dependencies
44
RUN set -ex; \

fpm-alpine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-fpm-alpine
1+
FROM php:8.1-fpm-alpine
22

33
# docker-entrypoint.sh dependencies
44
RUN apk add --no-cache \

fpm/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-fpm
1+
FROM php:8.1-fpm
22

33
# Install dependencies
44
RUN set -ex; \

0 commit comments

Comments
 (0)