summaryrefslogtreecommitdiffstats
path: root/auth/docker
diff options
context:
space:
mode:
Diffstat (limited to 'auth/docker')
-rw-r--r--auth/docker/d.props2
-rw-r--r--auth/docker/dbash.sh2
-rw-r--r--auth/docker/dstart.sh12
3 files changed, 14 insertions, 2 deletions
diff --git a/auth/docker/d.props b/auth/docker/d.props
index 90bc5511..6fc232ee 100644
--- a/auth/docker/d.props
+++ b/auth/docker/d.props
@@ -8,6 +8,6 @@ CONF_ROOT_DIR=/opt/app/osaaf
# Local Env info
HOSTNAME=meriadoc.mithril.sbc.com
HOST_IP=172.17.0.3
-CASS_HOST="cass.aaf.osaaf.org:172.17.0.2"
+CASS_HOST=cass.aaf.osaaf.org:172.17.0.2
diff --git a/auth/docker/dbash.sh b/auth/docker/dbash.sh
index da166b5c..642cba40 100644
--- a/auth/docker/dbash.sh
+++ b/auth/docker/dbash.sh
@@ -1 +1 @@
-docker exec -it aaf bash \ No newline at end of file
+docker exec -it aaf_$1 bash
diff --git a/auth/docker/dstart.sh b/auth/docker/dstart.sh
new file mode 100644
index 00000000..9fcc328b
--- /dev/null
+++ b/auth/docker/dstart.sh
@@ -0,0 +1,12 @@
+#!/bin/bash dstop.sh
+. d.props
+
+if [ "$1" == "" ]; then
+ AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
+else
+ AAF_COMPONENTS=$1
+fi
+
+for AAF_COMPONENT in ${AAF_COMPONENTS}; do
+ docker start aaf_$AAF_COMPONENT
+done