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 <