diff options
Diffstat (limited to 'jjb/include-docker-push.sh')
-rw-r--r-- | jjb/include-docker-push.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/jjb/include-docker-push.sh b/jjb/include-docker-push.sh new file mode 100644 index 000000000..1017d549c --- /dev/null +++ b/jjb/include-docker-push.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +DOCKER_REPOSITORY="nexus3.openecomp.org:10003" +SEARCH="aai-service"; + +if [[ $PROJECT =~ $SEARCH ]] ; then + docker push $DOCKER_REPOSITORY/ecomp/ajsc-aai:latest; +else + docker push $DOCKER_REPOSITORY/ecomp/model-loader:latest; +fi |