mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
6fcbd14d6f
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
roots='./server/server ./server/front ./pods/account ./products/tracker'
|
|
|
|
for r in $roots
|
|
do
|
|
pushd $r
|
|
rushx docker:build
|
|
popd
|
|
done |