mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-23 20:13:20 +00:00
cbcf04ff1d
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
roots='./server/server ./server/front ./pods/account ./pods/backup'
|
|
# ./products/tracker is temporary disabled
|
|
|
|
for r in $roots
|
|
do
|
|
pushd $r
|
|
rushx docker:build
|
|
popd
|
|
done |