diff options
author | 2018-04-10 15:03:24 -0500 | |
---|---|---|
committer | 2018-04-10 15:04:29 -0500 | |
commit | f482ea06ac55e56025c64916592f07db2c1fddd7 (patch) | |
tree | 6b7bfc87f085aaa8edf1fccb2db238e7b1c78500 /auth/docker/drun.sh | |
parent | ce6a67f4939900bbedaef5eeb986768fb4eec8ad (diff) |
Create Functioning Client Sample for Docs
Issue-ID: AAF-221
Change-Id: Iaefe6700a900a712409bda7ddfd18932ed4c0fda
Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
Diffstat (limited to 'auth/docker/drun.sh')
-rw-r--r-- | auth/docker/drun.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/auth/docker/drun.sh b/auth/docker/drun.sh index 33f3014d..2b5f709a 100644 --- a/auth/docker/drun.sh +++ b/auth/docker/drun.sh @@ -1,9 +1,5 @@ #!/bin/bash drun.sh -ORG=onap -PROJECT=aaf -DOCKER_REPOSITORY=nexus3.onap.org:10003 -VERSION=2.1.0-SNAPSHOT -./d.props +. ./d.props if [ "$1" == "" ]; then @@ -52,5 +48,5 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do ${LINKS} \ --publish $PORTMAP \ --mount type=bind,source=$CONF_ROOT_DIR,target=/opt/app/osaaf \ - ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} + ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} done |