ovdashboard/deploy/chores/docker_buildx

18 lines
422 B
Text
Raw Normal View History

2023-11-15 14:17:02 +00:00
#!/bin/sh
script="$( readlink -f "${0}" )"
script_dir="$( dirname "${script}" )"
# shellcheck disable=SC1091
. "${script_dir}/check_version"
2023-11-16 14:32:02 +00:00
# defined in `check_version` script
# shellcheck disable=SC2154
echo "${git_version}" >/dev/null
2023-11-15 14:17:02 +00:00
docker buildx build \
--pull --push \
2023-11-16 14:32:02 +00:00
--tag "code.yavook.de/oekzident.de/ovdashboard:${git_version}" \
2023-11-15 14:17:02 +00:00
--platform "linux/amd64,linux/arm64" \
"${script_dir}/../.."