Created
March 26, 2018 02:30
-
-
Save ydp/58cadd91a35e28f316d0995b62429f91 to your computer and use it in GitHub Desktop.
list tags for image in docker hub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
image="tensorflow/tensorflow" | |
for i in `sh dockertags.sh $image` | |
do | |
docker pull $image":"$i | |
docker tag $image":"$i "registry.api.weibo.com/tf/tensorflow:"$i | |
docker push "registry.api.weibo.com/tf/tensorflow:"$i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://hub.docker.com/r/tensorflow/tensorflow/tags/