mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-24 05:27:15 +00:00
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 |