Files
huly-platform/common/scripts/build_docker.sh
T
2022-04-01 12:57:22 +07:00

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