Reputation: 2065
Hello I just downloaded lb4 shopping example stated here https://loopback.io/doc/en/lb4/Authentication-Tutorial.html#try-it-out.
I have run npm install. But when I run npm run docker:start
its is giving following error
> [email protected] docker:start D:\ionic-pr\loopback-projects\tryjwt\loopback4-example-shopping
> ./bin/start-dbs.sh
'.' is not recognized as an internal or external command,
Thank you in advance
Upvotes: 0
Views: 126
Reputation: 387
As form the code snipt you provided, It seems that you are using Windows OS and the .sh inside the loopback docker is shell script which are not executable on Windows. For this you may install cygwin, gitbash like supporters and shot a try.
Alternatively You can look to following if using win10 :
https://blogs.windows.com/windowsdeveloper/2016/03/30/run-bash-on-ubuntu-on-windows/
Upvotes: 1