2020-11-27 01:47:30 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1
|
|
|
|
|
2021-03-11 01:41:44 +08:00
|
|
|
release=$(git describe --abbrev=0 --tags)
|
|
|
|
|
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "minio/minio:latest" \
|
2020-12-10 10:56:11 +08:00
|
|
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
2020-11-27 12:22:51 +08:00
|
|
|
-f Dockerfile.release .
|
|
|
|
|
2020-12-03 09:34:34 +08:00
|
|
|
docker buildx prune -f
|
|
|
|
|
2021-03-11 01:41:44 +08:00
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "minio/minio:${release}" \
|
2020-12-10 10:56:11 +08:00
|
|
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
2020-11-27 12:22:51 +08:00
|
|
|
-f Dockerfile.release .
|
2020-11-27 01:47:30 +08:00
|
|
|
|
2020-11-27 12:22:51 +08:00
|
|
|
docker buildx prune -f
|
2020-11-27 01:47:30 +08:00
|
|
|
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0
|