update join info

support joinCount function
This commit is contained in:
CaiHQ 2021-12-17 12:53:49 +08:00
parent 074d27405a
commit 053c97310a

View File

@ -11,7 +11,7 @@ if [ $# -lt 1 ]; then
fi
#linux/arm64/v8,
if [ "$2" == "push" ]; then
docker buildx build --platform linux/amd64,linux/arm64/v8 -t bdware/bdcluster:$1.arm64 ./ --push
docker buildx build --platform linux/amd64,linux/arm64/v8 -t bdware/bdcluster:$1 ./ --push
elif [ "$2" == "save" ]; then
docker buildx build --platform linux/amd64 -t bdware/bdcluster:$1 ./ --load
docker save -o $3/bdcluster-$1.tar bdware/bdcluster:$1
@ -19,4 +19,4 @@ else
# docker buildx build --platform linux/arm64/v8 -t bdware/bdcluster:$1 ./ --load
docker build -t bdware/bdcluster:$1 ./
docker tag bdware/bdcluster:$1 bdware/bdcluster:latest
fi
fi