0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-05-03 07:30:53 +02:00

Upgrade PHP Redis to 5.x for 19.0 (#1100)

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2020-06-04 22:03:30 +00:00 committed by GitHub
parent a229b17bca
commit 0599d1022c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View file

@ -70,7 +70,7 @@ imagick_version="$(
declare -A pecl_versions=(
[APCu]="$apcu_version"
[memcached]="$memcached_version"
[redis]="4.3.0"
[redis]="$redis_version"
[imagick]="$imagick_version"
)
@ -151,6 +151,7 @@ function create_variant() {
16.*|17.*|18.* )
sed -ri -e '
\@bcmath@d;
s/'"redis-${pecl_versions[redis]}"'/redis-4.3.0/g;
' "$dir/Dockerfile"
;;