blob: 6105a00bc54b12d1b763b98a9ba57d2592d474e4 [file] [log] [blame]
Instrumentaldf9e8272018-04-05 20:52:32 -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
Instrumental23a1c2e2018-04-11 14:13:46 -05006. ./d.props
Instrumentaldf9e8272018-04-05 20:52:32 -05007
8if [ "$1" == "" ]; then
9 AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
10else
11 AAF_COMPONENTS=$1
12fi
13
14for AAF_COMPONENT in ${AAF_COMPONENTS}; do
15 docker stop aaf_$AAF_COMPONENT
16done