mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 12:05:05 +08:00
25 lines
461 B
Bash
Executable File
25 lines
461 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
NAME=swift-aio-segments
|
|
PORT=28632
|
|
|
|
. $(dirname "$0")/docker.bash
|
|
|
|
start() {
|
|
docker run --rm -d --name ${NAME} \
|
|
-p 127.0.0.1:${PORT}:8080 \
|
|
bouncestorage/swift-aio
|
|
|
|
echo type=swift
|
|
echo env_auth=false
|
|
echo user=test:tester
|
|
echo key=testing
|
|
echo auth=http://127.0.0.1:${PORT}/auth/v1.0
|
|
echo use_segments_container=false
|
|
echo _connect=127.0.0.1:${PORT}
|
|
}
|
|
|
|
. $(dirname "$0")/run.bash
|