From 7477b436530faacf3c4715b910bc38b5a67bd7b9 Mon Sep 17 00:00:00 2001 From: Darshan Date: Thu, 5 Mar 2026 13:38:14 +0530 Subject: [PATCH] fix: correct tag. --- src/Appwrite/Platform/Installer/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Installer/Server.php b/src/Appwrite/Platform/Installer/Server.php index 9006eddbf9..42dff846e5 100644 --- a/src/Appwrite/Platform/Installer/Server.php +++ b/src/Appwrite/Platform/Installer/Server.php @@ -272,7 +272,7 @@ class Server if (!$this->dockerImageExists($image)) { $this->buildDockerInstallerImage($image); } - $this->ensureCorrectTag($image, 'appwrite/appwrite:latest'); + $this->ensureCorrectTag($image, 'appwrite/appwrite:local'); $port = (string)self::INSTALLER_WEB_PORT; $entrypoint = isset($opts['upgrade']) ? 'upgrade' : 'install';