-
Notifications
You must be signed in to change notification settings - Fork 332
New issue
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
Incorrect check in Makefile #1018
Comments
for quick workaround, until its solved, just update the check @$(DOCKER_COMPOSE) version > /dev/null || (echo "Please install docker compose binary" && exit 1) |
I think the better solution would be |
this would check if |
Then check if |
i'm afraid it won't work either, docker may be installed in different places, especially if you install the desktop version for example on my current machine docker is under imo |
FIx issue when run `make init` `make[1]: *** [docker-compose-check] Error 1` Fix #1018
In the Makefile file, there's a check that checks if docker exists, but the issue is that you used
DOCKER_COMPOSE
variableand
DOCKER_COMPOSE
variable consists ofdocker compose
which in turn causeswhich docker compose
command, and while docker command exists, compose command does not exist because its parameter to the docker command, so the check fails and currentlymake init
will always fail on every system unless they somehow got command namedcompose
The text was updated successfully, but these errors were encountered: