mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-05 10:29:51 +03:00
b3e516beb4
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
roots='./server/server ./server/front ./pods/account ./pods/backup ./products/tracker'
|
|
|
|
for r in $roots
|
|
do
|
|
pushd $r
|
|
rushx docker:build
|
|
popd
|
|
done |