如何在 Windows 中 运行 reactioncommerce 的 reaction-next-starterkit?
How can I run reaction-next-starterkit of reactioncommerce in Windows?
我一直在尝试安装 运行 Reaction Commerce with Reaction Plataform 使用 Windows。
我遵循了所有步骤,但是在 make
命令之后 reaction-next-starterkit
没有 运行(我使用 docker ps
进行了检查),甚至尝试 make start
它也不起作用。
我用 docker-compose logs -f
检查了日志,但输出没有显示很多东西:
': No such file or directory'sh
reaction-next-starterkit_web_1 exited with code 127
我试过 运行 other method,像这样:
docker-compose up -d
- 在 reaction-next-starterkit 文件夹中,但也不要保留 运行ning.
我检查了所有容器(包括非 运行ning),我看到了所有容器。
根据 this issue 在 Windows 中有一个 Git 的配置,当您对任何回购进行 git clone
时,它会更改一些文件,在特定情况下它让一些项目中断。
因此,解决方案是更改特定配置:
git config --global core.autocrlf input
然后make clean
删除到目前为止所做的一切,删除克隆的存储库,然后start from scratch。
我一直在尝试安装 运行 Reaction Commerce with Reaction Plataform 使用 Windows。
我遵循了所有步骤,但是在 make
命令之后 reaction-next-starterkit
没有 运行(我使用 docker ps
进行了检查),甚至尝试 make start
它也不起作用。
我用 docker-compose logs -f
检查了日志,但输出没有显示很多东西:
': No such file or directory'sh
reaction-next-starterkit_web_1 exited with code 127
我试过 运行 other method,像这样:
docker-compose up -d
- 在 reaction-next-starterkit 文件夹中,但也不要保留 运行ning.
我检查了所有容器(包括非 运行ning),我看到了所有容器。
根据 this issue 在 Windows 中有一个 Git 的配置,当您对任何回购进行 git clone
时,它会更改一些文件,在特定情况下它让一些项目中断。
因此,解决方案是更改特定配置:
git config --global core.autocrlf input
然后make clean
删除到目前为止所做的一切,删除克隆的存储库,然后start from scratch。