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 \
|
2021-09-02 09:48:26 +08:00
|
|
|
-f Dockerfile.release .
|
|
|
|
|
|
|
|
docker buildx prune -f
|
|
|
|
|
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "quay.io/minio/minio:latest" \
|
|
|
|
--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
|
|
|
|
2021-06-12 07:05:16 +08:00
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "quay.io/minio/minio:${release}" \
|
|
|
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
|
|
|
-f Dockerfile.release .
|
|
|
|
|
|
|
|
docker buildx prune -f
|
|
|
|
|
2021-06-19 00:11:55 +08:00
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "minio/minio:${release}.fips" \
|
|
|
|
--platform=linux/amd64 -f Dockerfile.release.fips .
|
|
|
|
|
|
|
|
docker buildx prune -f
|
|
|
|
|
|
|
|
docker buildx build --push --no-cache \
|
|
|
|
--build-arg RELEASE="${release}" -t "quay.io/minio/minio:${release}.fips" \
|
|
|
|
--platform=linux/amd64 -f Dockerfile.release.fips .
|
|
|
|
|
|
|
|
docker buildx prune -f
|
|
|
|
|
2020-11-27 01:47:30 +08:00
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0
|