summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-09 16:38:15 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-09 16:38:15 -0300
commitabbeba2611a685886c9f7c97a4ff5805ea16fa47 (patch)
treeab13aea05b35c5a6941119d57b3e55085440cb3c
parent93e0f6ac875f873c46eb4fd5e40ec01c6a04ff49 (diff)
Showing warning about executing ./install after docker installation
-rwxr-xr-xinstall.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index ae4f475..c50925c 100755
--- a/install.sh
+++ b/install.sh
@@ -43,6 +43,8 @@ check_dependencides() {
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..."
bash ./docker.sh
else
send_error_message "Install docker and docker-compose and come back later!"