exec /root/.start-container.sh: no such file or directory #23
-
When trying to start the lab after the update I'm getting
Is there a problem with the docker? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Answer from @LukasForst and @HappyStoic: For people with Windows machines running our StratoCyberLab: If you're having issues with last assignment and getting 500 Internal Server Error, your system incorrectly converted line endings in the git repository. To fix it you must delete strato cyber lab, setup git to correct line endings and git clone it again. So, the following should work:
|
Beta Was this translation helpful? Give feedback.
Answer from @LukasForst and @HappyStoic:
For people with Windows machines running our StratoCyberLab:
If you're having issues with last assignment and getting 500 Internal Server Error, your system incorrectly converted line endings in the git repository.
To fix it you must delete strato cyber lab, setup git to correct line endings and git clone it again. So, the following should work:
docker compose down
rm -r stratocyberlab
git
to not to convert line endings on checkoutgit config --global core.autocrlf false
git config --global core.eol lf