blob: 47b9dce18ec64c255a28d4197a59bf4ac47fd680 [file] [log] [blame]
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04001#/bin/bash
2
3# This script will pull all the required docker conatiners
4# from the insecure repository.
5
6registry="vinstall:5000"
7
8for i in `cat image-list.cfg`
9do
10docker pull $registry/$i
11docker tag $registry/$i $i
12docker rmi $registry/$i
13done