blob: 1017d549cef37d651f13ba1e5b72f332faaf2dc5 [file] [log] [blame]
Venkata Harish K Kajurbaaef362017-02-20 15:42:02 +00001#!/bin/bash
2
3DOCKER_REPOSITORY="nexus3.openecomp.org:10003"
4SEARCH="aai-service";
5
6if [[ $PROJECT =~ $SEARCH ]] ; then
7 docker push $DOCKER_REPOSITORY/ecomp/ajsc-aai:latest;
8else
9 docker push $DOCKER_REPOSITORY/ecomp/model-loader:latest;
10fi