[usage]
./buildall start-only
[how]
before:
./buildall run-only: call build_depends(), check images exist or not, then call start_depends()
after:
./buildall start-only: only call start_depends()
[why]
for some users locally deploy compass-ci, they will not build images,
and some users can't install lockfile-create command, only run containers,
no need to check images exist or not, so only call start_depends().
Signed-off-by: Liu Yinsi <liuyinsi(a)163.com>
---
sparrow/4-docker/buildall | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sparrow/4-docker/buildall b/sparrow/4-docker/buildall
index 8d08603..a7ace65 100755
--- a/sparrow/4-docker/buildall
+++ b/sparrow/4-docker/buildall
@@ -70,7 +70,7 @@ tmpdir=$(mktemp -d)
for dir in $CONTAINER_PATH/*/
do
- build_depends $dir
+ [ "$action" != "start-only" ] && build_depends $dir
start_depends $dir
done
--
2.23.0