Artifacts to Bootstrap

Issue-ID: AAF-543
Change-Id: I95d11b11c21ddeb63e393528c2504af673d27a6f
Signed-off-by: Instrumental <jonathan.gathman@att.com>
diff --git a/auth/docker/dstart.sh b/auth/docker/dstart.sh
index 6a29785..6ca4bae 100644
--- a/auth/docker/dstart.sh
+++ b/auth/docker/dstart.sh
@@ -2,6 +2,8 @@
 # Pull in Props
 . ./d.props
 
+DOCKER=${DOCKER:=docker}
+
 if [ "$1" == "" ]; then
     AAF_COMPONENTS=$(cat components)
 else
@@ -9,5 +11,5 @@
 fi
 
 for AAF_COMPONENT in ${AAF_COMPONENTS}; do
-    docker start aaf_$AAF_COMPONENT
+    $DOCKER start aaf_$AAF_COMPONENT
 done