summaryrefslogtreecommitdiffstats
path: root/jjb/include-docker-push.sh
blob: ec78d9ab181d253d3677878c3af4d3d2b6a8c488 (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/openecomp/ajsc-aai:latest;
else
    docker push $DOCKER_REPOSITORY/openecomp/model-loader:latest;
fi