1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/scripts/install-minio.sh

11 lines
329 B
Bash
Raw Normal View History

2022-06-22 23:40:33 +12:00
#!/bin/bash
if [[ $TARGETARCH == arm* ]] ;
then
echo "INSTALLING ARM64 MINIO"
2023-03-09 01:17:15 +13:00
wget https://dl.min.io/server/minio/release/linux-arm64/archive/minio.RELEASE.2022-10-24T18-35-07Z
2022-06-22 23:40:33 +12:00
else
echo "INSTALLING AMD64 MINIO"
2023-03-09 01:17:15 +13:00
wget https://dl.min.io/server/minio/release/linux-amd64/minio.RELEASE.2022-10-24T18-35-07Z
2022-06-22 23:40:33 +12:00
fi
chmod +x minio