summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorJose Lausuch <jalausuch@suse.com>2017-09-19 10:16:10 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-19 10:16:10 +0000
commit820b510890e689005c9bbe41363a58aa7adf1b5f (patch)
tree50e8e28e22a568f6f77f56d7d70ad7a5ff63a42a /build.sh
parenta852827f02adbf792356abf454f2c073b2257868 (diff)
parent28a8e9c5a1e442c866947455dfe8cbe47b66a0c7 (diff)
Merge "Prepare Functest euphrates containers" into stable/euphrates
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index 18d2e58de..e4d9b6af4 100644
--- a/build.sh
+++ b/build.sh
@@ -14,11 +14,11 @@ docker/parser \
docker/restapi"
(cd docker && docker build -t "${repo}/functest" .)
-docker push "${repo}/functest"
+docker push "${repo}/functest:euphrates"
for dir in ${dirs}; do
- (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}" .)
- docker push "${repo}/functest-${dir##**/}"
+ (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}:euphrates" .)
+ docker push "${repo}/functest-${dir##**/}:euphrates"
done
exit $?