-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
docker-compose pull fails with error image not found for private repos #1622
Comments
Have you tried using |
Hi approxit, yes was logged into the private docker repo, I had checked with docker info, and the username was of the repo account. |
Upgrading to latest version is always worth try. Remember to check 1.3 migrations notes before you make something funky. Have you tried manual pulling your image? When it fails, it's not a |
A manual docker pull, worked. I will upgrade to 1.3 and see if this resolves it. |
Docker 1.7 changed it's auth path. Revert back to Docker 1.6 in the meantime until Compose releases 1.3.2. See issue: #1590 |
I'm still getting this issue with more recent versions: $ docker-compose -v
docker-compose version: 1.3.3
CPython version: 2.7.6
OpenSSL version: OpenSSL 1.0.1f 6 Jan 2014
$ docker --version
Docker version 1.7.1, build 786b29d The problem looks like this: $ docker-compose up
Building web...
Step 0 : FROM my-user/private-imag
Pulling repository my-user/private-imag
Service 'web' failed to build: Error: image my-user/private-image:latest not found As reported above, doing |
Also still fails with |
I'm facing a similar issue with: $ docker -v Traceback (most recent call last): |
@screwgoth Pass in |
Now working with --allow-insecure-ssl. Have to pull the images beforehand for docker-compose up or scale to work. |
Same trouble with docker-compose 1.4.0
So still impossible to make a |
Just ran into this today... did a dirty work around and made a makefile that pulls all the images first for me. Not optimal but it works for now. Hopefully it will be fixed in 1.5. |
I am encountering the same thing. With 6 - 7 private repos it gets painful :) Any update on the status of this one? |
I just encountered this with docker-compose 1.2.0 when pulling images from quay.io. But it works fine with 1.5.0. Check that you don't have an old version of docker-compose installed. In my case I had a manual install in |
We had issue try to pull private image using docker-compose 1.2.0, after upgrade to 1.5.1, it is working fine using image name "myrepo/myapp" name pattern, we had found another issue that it fail on using "docker.io/myrepo/my-app" as the image name. We are try to make our scripts be able to switch between "docker.io" and our own docker proxy repo. |
@kenhuang I can't reproduce with Compose 1.5.2: test:
image: docker.io/tianon/true $ docker-compose up
Pulling test (docker.io/tianon/true:latest)...
latest: Pulling from tianon/true
f947739ce3ee: Pull complete
bce7ccaa26ca: Pull complete
Digest: sha256:92e44b3024657b093b592ec464ed3c20076804a0346efb99bef2b16cbd8f2460
Status: Downloaded newer image for tianon/true:latest
Creating dockerio_test_1
Attaching to dockerio_test_1
dockerio_test_1 exited with code 0 |
@aanand "docker.io/tianon/true" is a public image, can you try a private image? |
OK, I now get what I think you're seeing - $ docker-compose pull
Pulling test (docker.io/aanand/true:latest)...
Pulling repository docker.io/aanand/true
ERROR: Error: image aanand/true:latest not found
$ docker pull docker.io/aanand/true
Using default tag: latest
latest: Pulling from aanand/true
Digest: sha256:70ea24b18c7563bf5726476856f8a48e1047390d41d7147c4e0988e7fea5f1b4
Status: Downloaded newer image for aanand/true:latest |
I've got a fix in docker/docker-py#874. |
Fix has been merged, so the Is anyone continuing to experience the original problem with Compose 1.5? To be specific, the issue is a If so, please paste the output of |
@aanand, Docker Compose 1.5.1:
|
@gnarea I think this is your problem... |
Sorry, I forgot to say that I replaced the actual repository name with
|
I've got the same problem. On some machines The problem onyl occurs with a private registry. Maybe some parsing problem beause of the With
|
@gnarea This bit looks relevant:
Perhaps there's non-ASCII in your |
@aanand Ah yes i see. But looks like this is not really consistent. A request to the API gives an 401 wich is what should be checked. And this is also documented here https://docs.docker.com/registry/spec/api/#api-version-check
So an idea could be to check against that before pulling or after an 404 has been happened. What do you think about that? |
@aanand: I deleted .dockercfg and did "docker login" again, and now "docker-compose pull" works. Weird thing is that "docker pull FOO" did work. Thanks anyway! |
@gnarea It's also possible that you had a legacy |
@aanand, that must be it, that file was quite old. Cheers! |
I just had the same issue with our private repositories on hub.docker.com...Whenever i tried to do a "compose-docker up -d" it failed with "Image not found" on all the private images(even though i tried a "docker login" everywhere(!))... Docker version in my test setup(including swarm):
and compose:
Solved it by doing a "docker pull [privateImage]" untill i got all the images pulled down. Then "docker-compose up" ran just fine! So, if you got the same "Image not found" when trying to compose using private images, just pull them first with Docker, then everything works... A little weird that docker-compose is unable to pull the private images when docker itself have no problem doing so...anyways, the problem persists in the Docker versions above if anyone is interested... |
@thomasjoergensen is your docker-compose a local binary or is it a docker container itself? Please post the output of |
Hello, is docker-compose supposed to work with insecure/self-signed registries (https://docs.docker.com/registry/insecure) ? Using docker pull I get:
Using docker-compose pull:
docker-compose --version Thank you |
@igrcic That error has nothing to do with the registry being insecure or self-signed. version: "2"
services:
foo:
image: myserver:5000/my_image then Incidentally, the |
Thnx @aanand, I had replaced one underscore with the hyphen in my container name :P Everything is working as expected! First i tried with --verbose after the pull, but it complained. It doesn't complain at the end (but obviously it doesn't work either :D ) Merci, |
How does it complain? If there's a bug with |
As you said, --verbose has to come right after the docker-compose. In other combinations we get:
|
OK, that's expected (and also annoying, but difficult to fix). Thanks. On Thu, 19 May 2016 at 16:02 igrcic notifications@github.com wrote:
|
This is a workaround for Windows 7. We were running Docker Toolbox on Windows 7 with |
I'm having the same issue even with the config file found, the following is my output from verbose mode on a compose pull:
|
I also encountered this issue. We were using Delved deeper and noticed that when I did a
However if I specify
The interesting thing is that for doing a docker pull it seems unnecessary to supply the server name. It is only when doing a docker-compose pull that it matters. |
@WadeWaldron OK, that speaks to an inconsistency in name matching - presumably the CLI has special logic for matching the empty string against Could you open an issue on https://github.com/docker/docker-py, please? |
Hello! I experiencing same problem with stable version of "docker for windows". It seems that docker-compose unable to read credentials from windows credentials manager. docker-compose:
docker:
Login is successful:
Credentials stored using windows credentials store:
docker-compose fails to download image:
Docker itself is able to pull image:
|
Also seeing this issue trying to set DTR up to manage our images. No problem pulling using UPDATE: Removed incorrect log trace from original post; I had pasted incorrect syntax with an unrelated error. See below for correct output. docker-compose.yml:
|
I'm seeing this problem with docker-compose 1.8.0 and docker daemon 1.12.1 via swarm 1.2.5 -- The root problem is that on docker-compose up, docker-compose does not send the authorization header to the registry so the registry auth server doesn't get it. I have access to the logs of both the registry and the auth services, this is how I can confirm this. |
I am experiencing the same problem... docker pull works fine, docker-compose pull fails.
|
Hey folks, I just wanted to update here to say we've done a pass on some of the recent auth issues in docker-py, notably added support for credential stores if you're using one of those, and support for identity tokens (if you are using Compose with DTR or UCP, this probably concerns you). Those fixes will be in the next Compose release, tentatively 1.8.1. Related issues: |
With 1.8.1 being released last week, I am now going to close this issue. If you're still having trouble with authentication, please create a new issue describing the problem! |
@shin, is there a timeframe for it to hit docker for windows stable? |
You guys didn't release an updated version of docker-compose for Windows Server, so the above fix is not available on Windows Server! |
I have just set up a new cloud server with Ubuntu 14.04.2, Docker 1.7.0 and Docker Compose 1.2.0.
When I am executing, docker-compose up -d, I am getting the following errors (the image is coming from a private repo)
Traceback (most recent call last):
File "", line 3, in
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.main", line 31, in main
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.docopt_command", line 21, in sys_dispatch
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.command", line 27, in dispatch
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.docopt_command", line 24, in dispatch
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.command", line 59, in perform_command
File "/code/build/docker-compose/out00-PYZ.pyz/compose.cli.main", line 464, in up
File "/code/build/docker-compose/out00-PYZ.pyz/compose.project", line 208, in up
File "/code/build/docker-compose/out00-PYZ.pyz/compose.service", line 214, in recreate_containers
File "/code/build/docker-compose/out00-PYZ.pyz/compose.service", line 199, in create_container
File "/code/build/docker-compose/out00-PYZ.pyz/compose.progress_stream", line 37, in stream_output
File "/code/build/docker-compose/out00-PYZ.pyz/compose.progress_stream", line 50, in print_output_event
compose.progress_stream.StreamOutputError: Error: image togger/main-db:2.1.2 not found
any help would be greatly appreciated
The text was updated successfully, but these errors were encountered: