mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/usr/bin/env 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 |