Improve bash info for windows user (#13607)

* Improve bash info for windows user

* Update grammar

* Fix typo
This commit is contained in:
Olawale Oyeyipo 2021-05-03 12:42:15 +01:00 committed by GitHub
parent 4aebfb62f2
commit 2be1073131
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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