Configuration Agent and MS for AAF
[aaf/authz.git] / auth / docker / drun.sh
index 179a7da..a7378b7 100644 (file)
@@ -1,5 +1,19 @@
-#!/bin/bash drun.sh
-. d.props
+#!/bin/bash 
+# 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 '\.'`
@@ -9,24 +23,43 @@ fi
   
 for AAF_COMPONENT in ${AAF_COMPONENTS}; do 
        case "$AAF_COMPONENT" in
-               "service") PORTMAP="8100:8100";;
-               "locate") PORTMAP="8095:8095";;
-               "oauth") PORTMAP="8140:8140";;
-               "gui") PORTMAP="8200:8200";;
-               "cm") PORTMAP="8150:8150";;
-               "hello") PORTMAP="8130:8130";;
-               "fs") PORTMAP="80:8096";;
+               "service") 
+                       PORTMAP="8100:8100"
+                       LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" 
+                       ;;
+               "locate") 
+                       PORTMAP="8095:8095"
+                       LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" 
+                       ;;
+               "oauth") 
+                       PORTMAP="8140:8140"
+                       LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" 
+                       ;;
+               "gui") 
+                       PORTMAP="8200:8200"
+                       ;;
+               "cm") 
+                       PORTMAP="8150:8150"
+                       LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" 
+                       ;;
+               "hello") 
+                       PORTMAP="8130:8130"
+                       ;;
+               "fs") 
+                       PORTMAP="80:8096"
+                       ;;
        esac
        
        echo Starting aaf_$AAF_COMPONENT...
+
        docker run  \
          -d \
          --name aaf_$AAF_COMPONENT \
-         --hostname="$HOSTNAME" \
-         --add-host="$CASS_HOST" \
+         --hostname="${AAF_COMPONENT}.aaf.osaaf.org" \
+         --add-host="$HOSTNAME:$HOST_IP" \
+         --add-host="aaf.osaaf.org:$HOST_IP" \
+         ${LINKS} \
          --publish $PORTMAP \
          --mount type=bind,source=$CONF_ROOT_DIR,target=/opt/app/osaaf \
-         --link aaf_cass:cassandra \
-         ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
+         ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} 
 done
-#                --add-host="$HOSTNAME:$HOST_IP" \