mirror of
https://github.com/rclone/rclone.git
synced 2025-12-11 22:14:05 +01:00
test: add TestS3MinioEdge to test leading edge minio too #3934
This commit is contained in:
25
fstest/testserver/init.d/TestS3MinioEdge
Executable file
25
fstest/testserver/init.d/TestS3MinioEdge
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
NAME=minio-edge
|
||||
USER=rclone
|
||||
PASS=DeniseOxygenEiffel4
|
||||
|
||||
. $(dirname "$0")/docker.bash
|
||||
|
||||
start() {
|
||||
docker run --rm -d --name $NAME \
|
||||
-e "MINIO_ACCESS_KEY=$USER" \
|
||||
-e "MINIO_SECRET_KEY=$PASS" \
|
||||
minio/minio:edge server /data
|
||||
|
||||
echo type=s3
|
||||
echo provider=Minio
|
||||
echo access_key_id=$USER
|
||||
echo secret_access_key=$PASS
|
||||
echo endpoint=http://$(docker_ip):9000/
|
||||
echo _connect=$(docker_ip):9000
|
||||
}
|
||||
|
||||
. $(dirname "$0")/run.bash
|
||||
Reference in New Issue
Block a user