wekan/releases/docker-build.sh
Lauri Ojansivu 38711f0a29 Docker image for Linux amd64/arm64/s390x.
Thanks to xet7 !
2026-01-24 06:37:28 +02:00

18 lines
341 B
Bash
Executable file

#!/bin/bash
# 1) Check that there is only one parameter
# of Wekan version number:
if [ $# -ne 1 ]
then
echo "Syntax with Wekan version number:"
echo " ./release.sh 8.24"
exit 1
fi
docker buildx build \
--platform linux/amd64,linux/arm64,linux/s390x \
-t wekan/wekan:v$1 \
--push .
# OLD: docker build -t wekan .