Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit f855225

Browse files
Docs update - Windows docker troubleshooting
1 parent 17471b0 commit f855225

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

doc/3. FAQ and Recipes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# FAQ and Recipes
2+
3+
Below, you can find solutions for the most common problems and advice for typical config changes required by Vue Storefront API. If you solved any new issues by yourself, please let us know on [Slack](http://vuestorefront.slack.com) or [Forum](https://forum.vuestorefront.io/) and we will add them to the list so others don't need to reinvent the wheel.
4+
5+
## Problem starting Vue Storefront API on Windows Docker
6+
7+
In case you can't get vue storefront api (app container) to work on Windows and in logs you can see:
8+
9+
```
10+
app_1 | standard_init_linux.go:207: exec user process caused "no such file or directory"
11+
```
12+
13+
then your end of line character is probably set to native Windows crlf. To change that you need to run:
14+
15+
```
16+
git config core.autocrlf false
17+
git config core.eol lf
18+
git reset --hard
19+
docker-compose -f docker-compose.yml -f docker-compose.nodejs.yml up --build
20+
```

0 commit comments

Comments
 (0)