docker / docker-credential-helpers

Programs to keep Docker login credentials safe by storing in platform keystores
MIT License
1.06k stars 169 forks source link

Error on Docker Pull #266

Closed shuntera closed 1 year ago

shuntera commented 1 year ago

When I attempt the command 'docker pull significantgravitas/auto-gpt' I get the following error:

Using default tag: latest Error response from daemon: manifest for significantgravitas/auto-gpt:latest not found: manifest unknown: manifest unknown

shuntera commented 1 year ago

OK, seems to be because there is no :latest tag on the image, you have to specify the 0.2.2 tag (only one there right now). Would recommend applying the latest tag to that image.

And you need to add that tag in the docker-compose.yml file as follows:

image: significantgravitas/auto-gpt:0.2.2

If the 'latest' tag does get applied then :0.2.2 can be removed from docker-compose and the 'latest' tag will be implied, or you can add :latest to be specific

thaJeztah commented 1 year ago

Yes, if there's no :latest tag for the image, then it's needed to specify a tag to use.

Note that that image is maintained by a personal account (so it's not an official image, but "someone" created that image); so always be careful if you trust that image. You could try to find contact information for that user and ask them to consider adding a :latest tag; https://hub.docker.com/r/significantgravitas/auto-gpt

I'll close this ticket because this is not a bug, but feel free to continue the conversation.