Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.58 KB

docker_on_windows.md

File metadata and controls

25 lines (16 loc) · 1.58 KB

Docker On Windows

Got started with Docker on Windows. Which in itself is quite the quest.

Got to a point where I could start a more complicated implementation and it failed with the following error:

standard_init_linux.go:211: exec user process caused "no such file or directory"

The involved Dockerfile was pointing to a Bash shell script as ENTRYPOINT and the shell script has been altered to use CRLF instead of LF, while working under WSL

Changing the line endings back to LF fixed the issue.

Resources and References