Skip to content

Commit 24b56c8

Browse files
authored
Merge pull request #4037 from snitramodranoel/feat/add-rhel-flavors
feat: add RHEL flavors to server setup script
2 parents 2d6136a + be871a0 commit 24b56c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/server/src/setup/server-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ echo -e "3. Check Docker Installation. "
519519
if ! [ -x "$(command -v docker)" ]; then
520520
echo " - Docker is not installed. Installing Docker. It may take a while."
521521
case "$OS_TYPE" in
522-
"almalinux")
522+
"almalinux" | "rocky" | "centos" | "rhel" | "ol")
523523
$SUDO_CMD dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo >/dev/null 2>&1
524524
$SUDO_CMD dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin >/dev/null 2>&1
525525
if ! [ -x "$(command -v docker)" ]; then

0 commit comments

Comments
 (0)