Skip to content

Commit

Permalink
update for Docker install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Nashed committed Feb 11, 2024
1 parent a0112e1 commit 5a63d94
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
Empty file modified DominoOneTouchSetup.sh
100644 → 100755
Empty file.
Empty file modified entrypoint.sh
100644 → 100755
Empty file.
18 changes: 15 additions & 3 deletions install_container_env.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,10 @@ install()

cd /local/github/domino-startscript
./install_dominoctl

header "Installing/updating Domino Download (domdownload.sh)"

./domdownload.sh install
}

detect_container_env()
Expand Down Expand Up @@ -435,13 +439,21 @@ install_container_env()
install_package "$CNT"
else
if [ -x /usr/bin/apt-get ]; then
install_package docker.io

install_packages docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

else
install_package docker
# Assume Redhat/CentOS compatible environments

install_package yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
install_packages docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

fi

fi

#detect_container_env
systemctl enable --now docker
}

print_runtime()
Expand Down
Empty file modified nshcfg.sh
100644 → 100755
Empty file.

0 comments on commit 5a63d94

Please sign in to comment.