I am using Windows Subsystem for Linux (because I was unable to get the “make” command to operate in Windows even after installing GNU make) and have navigated past several roadblocks to get to the current error, which results from both the “make” command or the “make init-reaction-next-starterkit” command:
Successfully built c444b2fcaee1
Successfully tagged reaction-next-starterkit_web:latest
Running post-build hook script for reaction-next-starterkit.
reaction-next-starterkit post-build script invoked.
Recreating reaction-next-starterkit_web_1 … error
ERROR: for reaction-next-starterkit_web_1 Cannot start service web: OCI runtime create failed: container_linux.go:344: starting container process caused “exec: “/usr/local/src/reaction-app/bin/start”: stat /usr/local/src/reaction-app/bin/start: no such file or directory”: unknown
ERROR: for web Cannot start service web: OCI runtime create failed: container_linux.go:344: starting container process caused “exec: “/usr/local/src/reaction-app/bin/start”: stat /usr/local/src/reaction-app/bin/start: no such file or directory”: unknown
ERROR: Encountered errors while bringing up the project.
Makefile:218: recipe for target ‘start-reaction-next-starterkit’ failed
make: *** [start-reaction-next-starterkit] Error 1
hammannja@LAPTOP-296V5C11:/c/Users/jerry/Development/reaction-platform$
This part of the script appears to be looking for a start script existing in a directory that does not exist (i.e., either the start script or the directory or both do not exist). I suspect it is the directory that does not exist. I cannot find any directory within the project that even remotely comes close to matching this mapping.
The only thing I can think of is the “/mnt” interface between the Linux file system and the Windows file system. However, if this was the case (as it was for a previous error I was able to correct), other things should likely have failed prior to this step.
I would appreciate any thoughts others might have. Thanks!