From 2be1073131273ccdfbb29cfbb8f26df1c0daee46 Mon Sep 17 00:00:00 2001 From: Olawale Oyeyipo Date: Mon, 3 May 2021 12:42:15 +0100 Subject: [PATCH] Improve bash info for windows user (#13607) * Improve bash info for windows user * Update grammar * Fix typo --- bin/container-setup | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/container-setup b/bin/container-setup index 4e433a2df..bc1a3109a 100755 --- a/bin/container-setup +++ b/bin/container-setup @@ -61,6 +61,15 @@ elif [[ "$OSTYPE" == "linux-gnu"* ]]; then else echo "Oof! Sorry! This OS is unsupported! :(" + echo "If you're on Windows OS and have Docker or Podman for Windows installed:" + echo "Docker: https://docs.docker.com/docker-for-windows/install/" + echo "Podman: https://podman.io/getting-started/installation" + echo + echo "Execute the following:" + echo "docker-compose build" + echo "docker-compose up" + + exit 1 fi