Add Servlet Sample
[aaf/authz.git] / auth / docker / drun.sh
index a8f0393..c6914a0 100644 (file)
@@ -6,10 +6,13 @@
 if [ ! -e ./cass.props ]; then
     cp cass.props.init cass.props
 fi
+. ./cass.props
+
+DOCKER=${DOCKER:=docker}
 
 CASS_IS_SET="$(grep '<Cass IP>' cass.props)"
 if [ -n "$CASS_IS_SET" ]; then
-    CASS_IP="$(docker container inspect aaf_cass | grep \"IPAddress\": -m 1 | cut -d '"' -f 4)"
+    CASS_IP="$($DOCKER container inspect aaf_cass | grep \"IPAddress\": -m 1 | cut -d '"' -f 4)"
     if [ -n "$CASS_IP" ]; then
       sed -i -e "s/\(^.*:\).*/\1$CASS_IP/" cass.props
     else
@@ -32,22 +35,22 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
     case "$AAF_COMPONENT" in
     "service")
         PORTMAP="8100:8100"
-        LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST"
+        LINKS="--link aaf_cass:cassandra "
         ;;
     "locate")
         PORTMAP="8095:8095"
-        LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST"
+        LINKS="--link aaf_cass:cassandra "
         ;;
     "oauth")
         PORTMAP="8140:8140"
-        LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST"
+        LINKS="--link aaf_cass:cassandra "
         ;;
     "gui")
         PORTMAP="8200:8200"
         ;;
     "cm")
         PORTMAP="8150:8150"
-        LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST"
+        LINKS="--link aaf_cass:cassandra "
         ;;
     "hello")
         PORTMAP="8130:8130"
@@ -67,12 +70,9 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
 
     for A in aaf.osaaf.org $AH_ROOT; do 
        ADD_HOST="$ADD_HOST --add-host=$A:$HOST_IP"
-       for SA in service locate oauth gui fs cm hello; do
-         ADD_HOST="$ADD_HOST --add-host=$SA.$A:$HOST_IP"
-       done
     done
 
-    docker run \
+    $DOCKER run \
         -d \
         --name aaf_$AAF_COMPONENT \
         --hostname="${AAF_COMPONENT}.aaf.osaaf.org" \
@@ -83,6 +83,6 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
         --env LATITUDE=${LATITUDE} \
         --env LONGITUDE=${LONGITUDE} \
         --publish $PORTMAP \
-        --mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \
+        -v "aaf_config:$CONF_ROOT_DIR" \
         ${PREFIX}${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
 done