blob: ac8ffd0653ab4dbf741f9951ceda3a478a814aa5 [file] [log] [blame]
Instrumental4d7da3d2018-04-06 08:22:42 -05001#!/bin/bash dstop.sh
Sai Gandhamce6a67f2018-04-10 14:25:35 +00002ORG=onap
3PROJECT=aaf
4DOCKER_REPOSITORY=nexus3.onap.org:10003
5VERSION=2.1.0-SNAPSHOT
6./d.props
Instrumental4d7da3d2018-04-06 08:22:42 -05007
8if [ "$1" == "" ]; then
9 AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
10else
11 AAF_COMPONENTS=$1
12fi
13
14for AAF_COMPONENT in ${AAF_COMPONENTS}; do
15 docker start aaf_$AAF_COMPONENT
16done