From 9d77f1247dc12c50a23251ee76c4bea99f6ff8f0 Mon Sep 17 00:00:00 2001 From: Darek Desu <4459421+darekdesu@users.noreply.github.com> Date: Sun, 7 Apr 2024 11:14:20 +0200 Subject: [PATCH] Typo in docker compose up hint (#4866) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a9ee71895..a90f5866a 100755 --- a/install.sh +++ b/install.sh @@ -122,7 +122,7 @@ fi # Ask user if he wants to start the project read -p "🚀 Do you want to start the project now? (Y/n) " answer if [ "$answer" = "n" ]; then - echo "✅ Project setup completed. Run 'docker-compose up -d' to start." + echo "✅ Project setup completed. Run 'docker compose up -d' to start." exit 0 else echo "🐳 Starting Docker containers..."