rclone/fstest/testserver/init.d/TestS3Minio
Nick Craig-Wood 8dc4c01209 build: make integration tests run better on macOS and Windows
This changes as many of the integraton tests as possible so that they
use port forwarding rather than the docker IP directly.

Using the docker IP directly does not work on macOS and Windows as the
docker images are running in a VM rather than a container.

This adds the PORTS.md document to document which port numbers we are
using for which service as they need to be unique.
2024-04-16 10:48:48 +01:00

28 lines
532 B
Bash
Executable File

#!/bin/bash
set -e
NAME=minio
USER=rclone
PASS=AxedBodedGinger7
PORT=28625
. $(dirname "$0")/docker.bash
start() {
docker run --rm -d --name $NAME \
-e "MINIO_ACCESS_KEY=$USER" \
-e "MINIO_SECRET_KEY=$PASS" \
-p 127.0.0.1:${PORT}:9000 \
minio/minio server /data
echo type=s3
echo provider=Minio
echo access_key_id=$USER
echo secret_access_key=$PASS
echo endpoint=http://127.0.0.1:${PORT}/
echo _connect=127.0.0.1:${PORT}
}
. $(dirname "$0")/run.bash