2022-04-05 16:38:20 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-24 11:58:34 -07:00
|
|
|
ZTO_VER=$(git describe --tags $(git rev-list --tags --max-count=1))
|
2022-04-12 17:45:54 -07:00
|
|
|
ZTO_COMMIT=$(git rev-parse HEAD)
|
2022-04-05 16:38:20 -07:00
|
|
|
|
2023-11-03 18:11:51 -07:00
|
|
|
build() {
|
2022-04-05 16:38:20 -07:00
|
|
|
sudo docker login --username=${DOCKERHUB_USERNAME}
|
2023-11-03 18:11:51 -07:00
|
|
|
|
|
|
|
sudo docker buildx build \
|
|
|
|
--push \
|
|
|
|
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
|
|
|
|
--tag zerotier/zerotier-synology:${ZTO_VER} \
|
|
|
|
--tag zerotier/zerotier-synology:latest \
|
|
|
|
--build-arg ZTO_COMMIT=${ZTO_COMMIT} \
|
|
|
|
--build-arg ZTO_VER=${ZTO_VER} \
|
|
|
|
.
|
2022-04-05 16:38:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
"$@"
|