Skip to content

Commit 023136a

Browse files
committed
build script
1 parent dec2169 commit 023136a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

build.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)