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

11 lines
263 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 02:35:26 +13:00
wget https://dl.min.io/server/minio/release/linux-arm64/minio
2022-06-22 23:40:33 +12:00
else
echo "INSTALLING AMD64 MINIO"
2023-03-09 02:35:26 +13:00
wget https://dl.min.io/server/minio/release/linux-amd64/minio
2022-06-22 23:40:33 +12:00
fi
chmod +x minio