You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The postgres container stopped prematurely with this error message in the log: /usr/local/bin/docker-entrypoint.sh: line 170: /docker-entrypoint-initdb.d/init-user-db.sh: cannot execute: required file not found
The message is misleading, because the file really existed. Root cause; Bash cannot process files with CR/LF line endings.
Please add docker/.gitattibutes containing * text eol=lf or advice to set git config --global core.autocrlf false before cloning the repo.
BTW: I enjoyed reading "Microservices Praxisbuch".
The text was updated successfully, but these errors were encountered:
The postgres container stopped prematurely with this error message in the log:
/usr/local/bin/docker-entrypoint.sh: line 170: /docker-entrypoint-initdb.d/init-user-db.sh: cannot execute: required file not found
The message is misleading, because the file really existed. Root cause; Bash cannot process files with CR/LF line endings.
Please add
docker/.gitattibutes
containing* text eol=lf
or advice to setgit config --global core.autocrlf false
before cloning the repo.BTW: I enjoyed reading "Microservices Praxisbuch".
The text was updated successfully, but these errors were encountered: