diff --git a/app/Actions/Server/InstallDocker.php b/app/Actions/Server/InstallDocker.php index 8131ca7b3..21658ba79 100644 --- a/app/Actions/Server/InstallDocker.php +++ b/app/Actions/Server/InstallDocker.php @@ -142,7 +142,7 @@ class InstallDocker private function getFedoraDockerInstallCommand(): string { return "curl https://releases.rancher.com/install-docker/{$this->dockerVersion}.sh | sh || curl https://get.docker.com | sh -s -- --version {$this->dockerVersion} || (". - 'dnf dnf config-manager addrepo --from-repofile https://download.docker.com/linux/fedora/docker-ce.repo && '. + 'dnf config-manager addrepo --from-repofile https://download.docker.com/linux/fedora/docker-ce.repo && '. 'dnf install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin && '. 'systemctl start docker && '. 'systemctl enable docker --now'.