X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=auth%2Fdocker%2Fdrun.sh;h=a7378b75c9af53c2d3f7f0b448a46a1767db256b;hb=9ec2895301056a9e8967eadb139e56f03776fe26;hp=7aee605ca7a8203302091b5a6d419a80ba8089c9;hpb=d37b5467a3b8b375b603579d2888a4443a8b06a7;p=aaf%2Fauthz.git diff --git a/auth/docker/drun.sh b/auth/docker/drun.sh index 7aee605c..a7378b75 100644 --- a/auth/docker/drun.sh +++ b/auth/docker/drun.sh @@ -2,6 +2,18 @@ # Pull in Variables from d.props . ./d.props +# Create Volumes, if not exist already +for VOL in aaf_config aaf_cass_data; do + HAS_VOLUME=`docker volume ls | grep $VOL` + if [ "$HAS_VOLUME" = "" ]; then + docker volume create --name $VOL + fi +done + docker run \ + -d \ + --name aaf_config \ + --mount 'type=volume,src=aaf_config,dst=/opt/app/osaaf,volume-driver=local' \ + ${ORG}/${PROJECT}/aaf_agent:${VERSION} if [ "$1" == "" ]; then AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'` @@ -49,5 +61,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} + ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} done