mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
3b19f48929
This is necessary to pass the TestIntegration/FsMkdir/FsEncoding listing tests.
26 lines
482 B
Bash
Executable File
26 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
NAME=minio
|
|
USER=rclone
|
|
PASS=AxedBodedGinger7
|
|
|
|
. $(dirname "$0")/docker.bash
|
|
|
|
start() {
|
|
docker run --rm -d --name $NAME \
|
|
-e "MINIO_ACCESS_KEY=$USER" \
|
|
-e "MINIO_SECRET_KEY=$PASS" \
|
|
minio/minio 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
|