오류 :
exec /docker-entrypoint.sh: no such file or directory
원인 : Windows에서 작성한
.sh
파일의 줄바꿈이
CRLF
라 Linux 컨테이너가 인식하지 못함
해결 : VSCode 우측 하단 CRLF → LF 변경후 저장
예방 :
.gitattributes
에
*.sh text eol=lf
를 추가