We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose up --build
I'm getting this error when I run docker-compose up --build in Windows:
: not found--:--:-- src/wait-port: line 3: ---------- --:--:-- src/wait-port: set: line 4: illegal option -
I found out that it's because of EOL characters in Windows.
Solved it by using these commands:
$ cd src $ find . -name "wait-port" -exec dos2unix {} \;
ref: https://stackoverflow.com/a/76738032/1451757
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm getting this error when I run
docker-compose up --build
in Windows:I found out that it's because of EOL characters in Windows.
Solved it by using these commands:
ref: https://stackoverflow.com/a/76738032/1451757
The text was updated successfully, but these errors were encountered: