diff --git a/docker/build b/docker/build index 34b8e6cc87..7c92688705 100755 --- a/docker/build +++ b/docker/build @@ -1,14 +1,34 @@ #!/bin/bash # If the directories were numbered, a simple find could be used to build ;-) +push= CONTAINERS=(fedora-rdo-base cinder glance/glance-base glance/glance-api glance/glance-registry heat/heat-base heat/heat-api heat/heat-engine keystone mariadb rabbitmq swift/swift-base swift/swift-account swift/swift-container swift/swift-object swift/swift-proxy-server nova-compute/nova-base nova-compute/nova-compute nova-compute/nova-libvirt) + +while getopts "hp" opt > /dev/null 2>&1; do + case $opt in + p) + push=yes + ;; + h) + cat <