summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-09 16:54:01 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-09 16:54:01 -0300
commit8f7962aa3f8ad25970b720627b171dfe85d8b215 (patch)
tree1b21ef1c32e79eaec244455163b0b75eb2bdb6c7
parentabbeba2611a685886c9f7c97a4ff5805ea16fa47 (diff)
Improved the docker installation part
-rwxr-xr-xinstall.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index c50925c..90c50e8 100755
--- a/install.sh
+++ b/install.sh
@@ -38,13 +38,14 @@ check_dependencides() {
if command -v $1 &> /dev/null; then
send_success_message "$1 exists ✅ "
else
- echo -e $(printf "\e[31m "⚠️ You need to have \"$1\" installed and in your PATH! ⚠️"\e[0m")
+ echo -e $(printf "\e[31m ⚠️ $1 not found! ⚠️\e[0m")
read -p "Do you want YAMS to install docker and docker-compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! [y/N]: " install_docker
install_docker=${install_docker:-"n"}
if [ $install_docker == "y" ]; then
echo
- read -p "When docker finishes the installation, run ./install again! Press [ENTER] to continue..."
+ echo "🤔 When docker finishes the installation, run ./install again! 🧠"
+ read -p "Press [ENTER] to continue..."
bash ./docker.sh
else
send_error_message "Install docker and docker-compose and come back later!"