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
Unable to find locally built image #1568
Comments
|
Thanks for reporting. I can reproduce this with Compose 1.3.0 and Docker 1.7.0, but the following combinations do not exhibit the problem:
When using Docker 1.7.0, here's the (working) request sent by the Docker 1.7.0 client: Here's the (working) request sent by Compose 1.2.0: Here's the (non-working) request sent by Compose 1.3.0: Perhaps the problem is isolated to a particular API version or range of versions (1.15 and 1.19 work, 1.18 doesn't). |
|
Right. After some digging, I've found the problem: The stable version of docker-py has a bug in The reason it works with Docker 1.6.2 is actually because of a bug in the Docker API where the I've fixed it by explicitly setting |
|
Great, thanks! |
|
Also hit this bug after upgrading. You can get a docker-compose OSX binary with this fix by running: |
I have a locally built image (built with
docker build -t project/heroku-base ./project-heroku-base) that version 1.3 of docker-compose is not finding during the build process for another image.I can build with
docker build app ./app, and with version 1.2 of docker-compose I can build withdocker-compose build app.The text was updated successfully, but these errors were encountered: