From 874e8cd1b93edad4da2a407166466926612bacd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Fri, 12 Jun 2026 14:13:01 +0200 Subject: [PATCH] feat: add php-memcached extension to all images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The base image exposes OWNCLOUD_MEMCACHED_* env vars that configure \OC\Memcache\Memcached, but none of the php images shipped a memcached PHP extension (only apcu and redis), making that configuration dead at runtime. Add php7.4-memcached (v22.04) and php8.3-memcached (v24.04) next to the existing redis extension so the memcached caching backend is functional. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com> --- v22.04/Dockerfile.multiarch | 1 + v24.04/Dockerfile.multiarch | 1 + 2 files changed, 2 insertions(+) diff --git a/v22.04/Dockerfile.multiarch b/v22.04/Dockerfile.multiarch index 27fca20..b419802 100644 --- a/v22.04/Dockerfile.multiarch +++ b/v22.04/Dockerfile.multiarch @@ -40,6 +40,7 @@ RUN apt-get update -y && \ php7.4-ldap \ php7.4-apcu php7.4-apcu-bc \ php7.4-redis \ + php7.4-memcached \ php7.4-gmp \ php7.4-imagick \ php7.4-smbclient \ diff --git a/v24.04/Dockerfile.multiarch b/v24.04/Dockerfile.multiarch index 7e6080e..899dbf9 100644 --- a/v24.04/Dockerfile.multiarch +++ b/v24.04/Dockerfile.multiarch @@ -30,6 +30,7 @@ RUN apt-get update -y && \ php8.3-ldap \ php8.3-apcu \ php8.3-redis \ + php8.3-memcached \ php8.3-gmp \ php8.3-imagick \ php8.3-smbclient \