You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
539 B
19 lines
539 B
#!/bin/bash
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1
|
|
|
|
docker buildx build --push --no-cache -t "minio/minio:latest" \
|
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
|
-f Dockerfile.release .
|
|
|
|
docker buildx prune -f
|
|
|
|
release=$(git describe --abbrev=0 --tags)
|
|
|
|
docker buildx build --push --no-cache -t "minio/minio:${release}" \
|
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
|
|
-f Dockerfile.release .
|
|
|
|
docker buildx prune -f
|
|
|
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0
|
|
|