mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
aed77a8fb2
The latter is more portable, while the former only works on systems where /bin/bash exists (or is symlinked appropriately).
27 lines
469 B
Bash
Executable File
27 lines
469 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
NAME=rclone-sftp-openssh
|
|
USER=rclone
|
|
PASS=password
|
|
PORT=28627
|
|
|
|
. $(dirname "$0")/docker.bash
|
|
|
|
start() {
|
|
docker run --rm -d --name ${NAME} \
|
|
-p 127.0.0.1:${PORT}:22 \
|
|
rclone/test-sftp-openssh
|
|
|
|
echo type=sftp
|
|
echo host=127.0.0.1
|
|
echo port=$PORT
|
|
echo user=$USER
|
|
echo pass=$(rclone obscure $PASS)
|
|
echo copy_is_hardlink=true
|
|
echo _connect=127.0.0.1:${PORT}
|
|
}
|
|
|
|
. $(dirname "$0")/run.bash
|