From 8ff55b77a199086d11ed8a2ca4e3a30371f30cf8 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 7 Apr 2024 14:53:51 +0400 Subject: [PATCH] bug fix docker install on alma/cloudlinux https://community.cyberpanel.net/t/cannot-install-docker-on-version-2-0-2/18578/3 --- dockerManager/dockerInstall.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dockerManager/dockerInstall.py b/dockerManager/dockerInstall.py index c2f1b3e6a..9f32e0251 100755 --- a/dockerManager/dockerInstall.py +++ b/dockerManager/dockerInstall.py @@ -20,6 +20,9 @@ class DockerInstall: if ProcessUtilities.decideDistro() == ProcessUtilities.cent8: + command = 'yum install yum-utils -y' + ServerStatusUtil.executioner(command, statusFile) + command = 'yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo' ServerStatusUtil.executioner(command, statusFile)