summaryrefslogtreecommitdiffstats
path: root/jjb/include-docker-push.sh
blob: 1017d549cef37d651f13ba1e5b72f332faaf2dc5 (plain)
1
2
3
4
5
6
7
8
9
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