From 26fb17ffcda8efdd41dcf435eba2c383f065f30e Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 31 Mar 2015 21:26:40 -0700 Subject: [PATCH] Add a tools/pull tool this uses docker-compose (-c flag) or docker (-d flag) to pull the latest images from docker hub. Change-Id: I7793178deeb2e37c92fb1518ae8666432e74d9b7 --- tools/pull | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 tools/pull diff --git a/tools/pull b/tools/pull new file mode 100755 index 0000000000..a07e829eee --- /dev/null +++ b/tools/pull @@ -0,0 +1,102 @@ +#!/bin/bash +# +# This script can be used to pull all of the docker images for the +# containers that compose Kolla. This is primarily used to update +# containers after a rebuild. Run with the option docker or compose +# to select the pull tool. + +if [[ $EUID -ne 0 ]]; then + echo "You must execute this script as root." 1>&2 + exit 1 +fi + +usage () { + cat <