Gitiles
Code Review
Sign In
gerrit.opencord.org
/
voltha
/
b2b369aa1b6c9cd95ceea5f243d8e5e4b7832a36
/
.
/
install
/
PullContainers.sh
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