ac8ffd0653ab4dbf741f9951ceda3a478a814aa5
[aaf/authz.git] / auth / docker / dstart.sh
1 #!/bin/bash dstop.sh
2 ORG=onap
3 PROJECT=aaf
4 DOCKER_REPOSITORY=nexus3.onap.org:10003
5 VERSION=2.1.0-SNAPSHOT
6 ./d.props
7
8 if [ "$1" == "" ]; then
9   AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
10 else
11   AAF_COMPONENTS=$1
12 fi
13
14 for AAF_COMPONENT in ${AAF_COMPONENTS}; do
15   docker start aaf_$AAF_COMPONENT
16 done