summaryrefslogtreecommitdiffstats
path: root/auth/docker/drun.sh
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-08-16 17:22:45 -0500
committerInstrumental <jonathan.gathman@att.com>2018-08-16 17:22:51 -0500
commite44d2f770f28c3290863e509cb2406dcb67bd686 (patch)
treefecc9931d3c2299b23d9b6c921c7b8dcd3e081d8 /auth/docker/drun.sh
parente92a354be569d7be3d6e11ab11e32bd78ff9227d (diff)
Fix shs for REPO
Issue-ID: AAF-419 Change-Id: I2cec912c935a28c818ad4358cd236c153de54c30 Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker/drun.sh')
-rw-r--r--auth/docker/drun.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/docker/drun.sh b/auth/docker/drun.sh
index 8cedbcc4..04f5b323 100644
--- a/auth/docker/drun.sh
+++ b/auth/docker/drun.sh
@@ -12,7 +12,7 @@ fi
. ./cass.props
if [ "$1" == "" ]; then
- AAF_COMPONENTS=$(ls -r ../aaf_${VERSION}/bin | grep -v '\.')
+ AAF_COMPONENTS=$(cat components)
else
AAF_COMPONENTS="$@"
fi
@@ -57,5 +57,5 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
${LINKS} \
--publish $PORTMAP \
--mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \
- ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
+ ${PREFIX}${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
done