2020-11-26 12:47:30 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1
|
|
|
|
|
2020-11-26 23:22:51 -05:00
|
|
|
docker buildx build --push --no-cache -t "minio/minio:latest" \
|
|
|
|
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
|
|
|
-f Dockerfile.release .
|
|
|
|
|
2020-12-02 20:34:34 -05:00
|
|
|
docker buildx prune -f
|
|
|
|
|
|
|
|
release=$(git describe --abbrev=0 --tags)
|
|
|
|
|
2020-11-26 23:22:51 -05:00
|
|
|
docker buildx build --push --no-cache -t "minio/minio:${release}" \
|
|
|
|
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
|
|
|
-f Dockerfile.release .
|
2020-11-26 12:47:30 -05:00
|
|
|
|
2020-11-26 23:22:51 -05:00
|
|
|
docker buildx prune -f
|
2020-11-26 12:47:30 -05:00
|
|
|
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0
|