We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
build
1 parent dec2169 commit 023136aCopy full SHA for 023136a
build.sh
@@ -0,0 +1,14 @@
1
+# -- running setup script
2
+bash run/setup.sh
3
+
4
+# -- getting all docker-compose files
5
+DC_FILES="docker-compose.main.yml"
6
+for F in `find ./services -type f -maxdepth 1 -name "docker-compose*.yml"`
7
+do
8
+ DC_FILES="$DC_FILES -f $F "
9
+done
10
11
+# -- building containers
12
+# docker-compose $DC_FILES build && docker-compose $DC_FILES up -d
13
14
+echo $DC_FILES
0 commit comments