From ab9b031435f837732536cbadb83288e6c00a131b Mon Sep 17 00:00:00 2001 From: James Manuel Date: Wed, 8 Jul 2026 17:15:59 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20test(aio):=20add=20SKIP=5FMASTER?= =?UTF-8?q?CONTAINER=5FUPDATE=5FCHECK=20escape=20hatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Short-circuit IsMastercontainerUpdateAvailable() when the env var is set, so local test images don't nag for updates. Signed-off-by: James Manuel --- php/src/Docker/DockerActionManager.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/php/src/Docker/DockerActionManager.php b/php/src/Docker/DockerActionManager.php index 925f3942..04885f80 100644 --- a/php/src/Docker/DockerActionManager.php +++ b/php/src/Docker/DockerActionManager.php @@ -741,6 +741,10 @@ readonly class DockerActionManager { } public function IsMastercontainerUpdateAvailable(): bool { + if (getenv('SKIP_MASTERCONTAINER_UPDATE_CHECK') === 'true') { + return false; + } + $imageName = $this->GetCurrentImageName(); $containerName = 'nextcloud-aio-mastercontainer';