1290ea78523811dee998f95b1599238e71e6c806
[aaf/authz.git] / auth / docker / aaf.sh
1 #!/bin/bash
2 . ./d.props
3
4 function run_it() {
5   docker run $@ \
6     --mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \
7     --add-host="$HOSTNAME:$HOST_IP" \
8     --add-host="aaf.osaaf.org:$HOST_IP" \
9     --env AAF_ENV=${AAF_ENV} \
10     --env AAF_REGISTER_AS=${AAF_REGISTER_AS} \
11     --env LATITUDE=${LATITUDE} \
12     --env LONGITUDE=${LONGITUDE} \
13     --name aaf_config_$USER \
14     $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \
15     /bin/bash $PARAMS
16 }
17
18 function set_prop() {
19 docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3"
20 }
21
22 function encrypt_it() {
23   docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2"
24 }
25
26 function set_it() {
27   docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2"
28 }
29
30 PARAMS="$@"
31 if [ "$PARAMS" != "" ]; then
32   run_it -it --rm 
33 fi
34