From 2faa2772ac0a2a5c73769cca6df5793983b3544e Mon Sep 17 00:00:00 2001 From: Mohammad Mohammadpour <116471351+shawshanck@users.noreply.github.com> Date: Fri, 4 Aug 2023 11:53:15 +0330 Subject: [PATCH] Update install.sh --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 85e4bba..28a3667 100644 --- a/install.sh +++ b/install.sh @@ -84,9 +84,9 @@ startInstall() curl -fsSL https://get.docker.com | sh >> ~/docker-script-install.log 2>&1 - echo -e "${YELLOW} - docker-ce version is now:${NC}" + echo -e "${YELLOW} - Docker-Ce version is now:${NC}" DOCKERV=$(docker -v) - echo -e "${YELLOW} ${NC}"${DOCKERV} + echo -e "${NC} ${NC}"${DOCKERV} sleep 3s if [[ "$OS" == 2 ]]; then @@ -306,7 +306,7 @@ startInstall() echo "" - echo -e "${GREEN} - Docker Compose Version is now: ${NC}" + echo -e "${YELLOW} - Docker Compose Version is now: ${NC}" DOCKCOMPV=$(docker-compose --version) echo " "${DOCKCOMPV} echo "" @@ -319,7 +319,7 @@ startInstall() ########################################## ISACT=$( (sudo systemctl is-active docker ) 2>&1 ) if [[ "$ISACt" != "active" ]]; then - echo -e "${YELLOW}Giving the Docker service time to start...${NC}" + echo -e "${GRREN}Giving the Docker service time to start...${NC}" while [[ "$ISACT" != "active" ]] && [[ $X -le 10 ]]; do sudo systemctl start docker >> ~/docker-script-install.log 2>&1 sleep 10s &