Reputation: 15076
I want to pull all the images with tag 1.2.0
from here.
Is this possible?
Upvotes: 37
Views: 50227
Reputation: 3083
as far as i know, you need to fetch the name of the images, and then batch pull them using "docker pull openshift/xxx:1.2.0"
Upvotes: 2
Reputation: 263637
You pull specific tags with the following syntax:
docker pull fedora:1.0
From your new question, you appear to want to pull multiple repositories from a specific login on Docker Hub. I'm not aware of a command that supports this but you should be able to script the docker search
output.
Upvotes: 58