blob: 47b9dce18ec64c255a28d4197a59bf4ac47fd680 [file] [log] [blame]
#/bin/bash
# This script will pull all the required docker conatiners
# from the insecure repository.
registry="vinstall:5000"
for i in `cat image-list.cfg`
do
docker pull $registry/$i
docker tag $registry/$i $i
docker rmi $registry/$i
done