0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-17 08:34:48 +02:00

Upgrade PHP Redis to 5.x for 19.0

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2020-05-02 18:11:04 +02:00
parent a229b17bca
commit 7c43481351
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"
;;