From 4b5db024fb621e26ff60974603fe949bb83b4bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20de=20Biolley?= Date: Tue, 15 Jul 2025 17:33:58 +0200 Subject: [PATCH] :pencil2: Fix copy-paste issue --- app/Actions/Server/InstallDocker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Server/InstallDocker.php b/app/Actions/Server/InstallDocker.php index 779f06b30..21dc2f80b 100644 --- a/app/Actions/Server/InstallDocker.php +++ b/app/Actions/Server/InstallDocker.php @@ -83,7 +83,7 @@ class InstallDocker } elseif ($supported_os_type->contains('alpine')) { $command = $command->merge([ "echo 'Installing Prerequisites...'", - 'zypper update -y', + 'apk update', 'command -v curl >/dev/null || apk add curl', 'command -v wget >/dev/null || apk add wget', 'command -v git >/dev/null || apk add git',