-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Local Docker compose impossible on Windows #416
Comments
Hi @declension, Thanks for reporting! We already have an issue regarding But it's about |
Thanks @bsideup - I'll try to get some time whilst I still have a Windows machine available (one more day....). Actually when building |
I managed to get this working by adding a copy of docker-compose to my path without the .exe extension. Obviously a hack, but it seems to work |
* Setting platform dependent docker-compose executable name Fixes #416 * Changed docker-compose executable naming to be more concise * Reverted Compose executable variable name, added change to CHANGELOG.md
Thanks! |
Hi
In 1.4.1, the implementation for the
LocalDockerCompose
class has a constant specifying the executable name of local Docker Compose.This is hard-coded to
docker-compose
which is fine on *nix / OS X, but fails on Windows, which is expectingdocker-compose.exe
.It might be nice if this auto-detected Windows and used the
.exe
version, or even just tried both in turn...The text was updated successfully, but these errors were encountered: