summaryrefslogtreecommitdiff
path: root/bin/dca
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dca')
-rwxr-xr-xbin/dca13
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/dca b/bin/dca
new file mode 100755
index 0000000..2289ac1
--- /dev/null
+++ b/bin/dca
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+shopt -s nullglob
+
+echo Using ./services/*.yml
+COMPOSE_OPTIONS=""
+for file in ./services/*.yml; do
+ COMPOSE_OPTIONS="${COMPOSE_OPTIONS} -f $file"
+done
+
+export COMPOSE_PROJECT_NAME=server
+export IMAGES=$PWD/images
+
+docker-compose $COMPOSE_OPTIONS "$@"