mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-21 11:06:09 +02:00
Default to php 8.1
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
This commit is contained in:
parent
625472cfa3
commit
a7b6494e33
4 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||
FROM php:8.0-apache-bullseye
|
||||
FROM php:8.1-apache-bullseye
|
||||
|
||||
# entrypoint.sh and cron.sh dependencies
|
||||
RUN set -ex; \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
|
||||
FROM php:8.0-fpm-alpine3.15
|
||||
FROM php:8.1-fpm-alpine3.15
|
||||
|
||||
# entrypoint.sh and cron.sh dependencies
|
||||
RUN set -ex; \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
|
||||
FROM php:8.0-fpm-bullseye
|
||||
FROM php:8.1-fpm-bullseye
|
||||
|
||||
# entrypoint.sh and cron.sh dependencies
|
||||
RUN set -ex; \
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
set -eo pipefail
|
||||
|
||||
declare -A php_version=(
|
||||
[default]='8.0'
|
||||
[default]='8.1'
|
||||
[23]='8.0'
|
||||
[22]='8.0'
|
||||
)
|
||||
|
||||
declare -A cmd=(
|
||||
|
|
Loading…
Add table
Reference in a new issue