X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=auth%2Fdocker%2Faaf.sh;h=7301c50e10a53cab7f4d4573b469ab7ba481db29;hb=94053613671f7456ea5114a8421d0e6868bdbba0;hp=5757051fc4881004600f009f92b0051b470aa38d;hpb=49525303bc07064d60b3dde3056b2e9e8a379435;p=aaf%2Fauthz.git diff --git a/auth/docker/aaf.sh b/auth/docker/aaf.sh index 5757051f..7301c50e 100644 --- a/auth/docker/aaf.sh +++ b/auth/docker/aaf.sh @@ -4,9 +4,10 @@ if [ -e ./cass.props ]; then . ./cass.props fi +DOCKER=${DOCKER:=docker} function run_it() { - docker run $@ \ - --mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \ + $DOCKER run $@ \ + -v "aaf_config:$CONF_ROOT_DIR" \ --add-host="$HOSTNAME:$HOST_IP" \ --add-host="aaf.osaaf.org:$HOST_IP" \ --env HOSTNAME=${HOSTNAME} \ @@ -25,15 +26,15 @@ function run_it() { } function set_prop() { -docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" + $DOCKER exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" } function encrypt_it() { - docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" + $DOCKER exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" } function set_it() { - docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" + $DOCKER exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" } PARAMS="$@"