Reputation: 198388
I've searched a lot but still can't get the accurate answer of this question:
What's the default url that docker using when run docker pull
? (Especially the /v2
one)
I've see several urls from log or some documents:
But I'm not sure which one is correct, and what's the purpose of the others
Upvotes: 3
Views: 3224
Reputation: 1329102
Those 3 urls are there for different purposes:
http://registry.hub.docker.com is the Docker web site for listing the image.
It is not where those images are actually stored.
As the Nexus Docker settings details:
This is a service issue, not related to the docker engine project.
Amazon S3 is experiencing some problems.
Upvotes: 2
Reputation: 312219
To quote man docker-pull
:
If you do not specify a REGISTRY_HOST, the command uses Docker's public registry located at registry-1.docker.io by default.
I don't think you can get more official than that.
Upvotes: 1