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).
26 lines
476 B
Bash
Executable File
26 lines
476 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
NAME=proftpd
|
|
USER=rclone
|
|
PASS=RaidedBannedPokes5
|
|
|
|
. $(dirname "$0")/docker.bash
|
|
|
|
start() {
|
|
docker run --rm -d --name $NAME \
|
|
-e "FTP_USERNAME=rclone" \
|
|
-e "FTP_PASSWORD=$PASS" \
|
|
hauptmedia/proftpd
|
|
|
|
echo type=ftp
|
|
echo host=$(docker_ip)
|
|
echo user=$USER
|
|
echo pass=$(rclone obscure $PASS)
|
|
echo encoding=Asterisk,Ctl,Dot,Slash
|
|
echo _connect=$(docker_ip):21
|
|
}
|
|
|
|
. $(dirname "$0")/run.bash
|