parent
81c907b4bf
commit
e90efd73a2
@ -0,0 +1,13 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1 |
||||||
|
|
||||||
|
release=$(git describe --abbrev=0 --tags) |
||||||
|
docker buildx build --push --no-cache -t "minio/minio:${release}-ubi" \ |
||||||
|
--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \ |
||||||
|
-f Dockerfile.release.ubi . |
||||||
|
|
||||||
|
docker buildx prune -f |
||||||
|
|
||||||
|
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0 |
||||||
|
|
@ -1,17 +1,17 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
set -x |
|
||||||
|
|
||||||
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1 |
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=1 |
||||||
|
|
||||||
release=$(git describe --abbrev=0 --tags) |
release=$(git describe --abbrev=0 --tags) |
||||||
sudo docker buildx build --push --no-cache -t "minio/minio:latest" \ |
docker buildx build --push --no-cache -t "minio/minio:latest" \ |
||||||
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \ |
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \ |
||||||
-f Dockerfile.release . |
-f Dockerfile.release . |
||||||
|
|
||||||
|
docker buildx build --push --no-cache -t "minio/minio:${release}" \ |
||||||
|
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \ |
||||||
|
-f Dockerfile.release . |
||||||
|
|
||||||
sudo docker buildx build --push -t "minio/minio:${release}" \ |
docker buildx prune -f |
||||||
--platform=linux/arm,linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \ |
|
||||||
-f Dockerfile.release . |
|
||||||
|
|
||||||
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0 |
sudo sysctl net.ipv6.conf.wlp59s0.disable_ipv6=0 |
||||||
|
|
||||||
|
Loading…
Reference in new issue