init
Some checks failed
docker-build / build (push) Has been cancelled

This commit is contained in:
2025-08-27 15:22:41 +07:00
commit 936805a8c7
12 changed files with 228 additions and 0 deletions

18
scripts/minio_uploader.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
rclone config create myminio s3 provider Minio access_key_id $MINIO_ACCOUNT_ID secret_access_key $MINIO_APPLICATION_KEY endpoint $MINIO_ENDPOINT region $MINIO_LOCATION acl private
case $1 in
copy)
echo "copy from $2 to $3"
rclone copy --progress $2 $3
;;
list)
echo "list $2"
rclone ls $2
;;
delete)
echo "delete $2"
rclone delete $2
;;
esac