blob: 0fb993ae438e1ac368b1400010b2a9a22e7074c0 [file] [log] [blame]
Instrumental97083ef2018-04-25 15:22:38 -05001#!/bin/bash
Instrumental12f7f462018-04-23 15:43:47 -05002# Pull in Props
3. ./d.props
Instrumental4d7da3d2018-04-06 08:22:42 -05004
5if [ "$1" == "" ]; then
6 AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
7else
8 AAF_COMPONENTS=$1
9fi
10
11for AAF_COMPONENT in ${AAF_COMPONENTS}; do
12 docker start aaf_$AAF_COMPONENT
13done