feat: add RHEL flavors to server setup script

This commit is contained in:
Leonardo Martins
2026-03-19 10:32:50 -03:00
parent 6fb4a13a18
commit 92975a6865

View File

@@ -499,7 +499,7 @@ echo -e "3. Check Docker Installation. "
if ! [ -x "$(command -v docker)" ]; then
echo " - Docker is not installed. Installing Docker. It may take a while."
case "$OS_TYPE" in
"almalinux")
"almalinux" | "rocky" | "centos" | "rhel" | "ol")
dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo >/dev/null 2>&1
dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin >/dev/null 2>&1
if ! [ -x "$(command -v docker)" ]; then