Skip to content

Commit

Permalink
adding docker dependency for minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
star3am committed Jul 25, 2024
1 parent 1fb4ede commit 89a7f46
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions minikube/minikube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ function minikube-install() {
echo -e '\e[38;5;198m'"++++ CPU is $ARCH"
echo -e '\e[38;5;198m'"++++ "

echo -e '\e[38;5;198m'"++++ "
echo -e '\e[38;5;198m'"++++ Ensure Docker Daemon is running (Dependency)"
echo -e '\e[38;5;198m'"++++ "
if pgrep -x "dockerd" >/dev/null
then
echo -e '\e[38;5;198m'"++++ Docker is running"
else
echo -e '\e[38;5;198m'"++++ Ensure Docker is running.."
sudo bash /vagrant/docker/docker.sh
fi

echo -e '\e[38;5;198m'"++++ "
echo -e '\e[38;5;198m'"++++ Installing Minikube"
echo -e '\e[38;5;198m'"++++ "
Expand Down

0 comments on commit 89a7f46

Please sign in to comment.