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