mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 12:36:38 +08:00
aed77a8fb2
The latter is more portable, while the former only works on systems where /bin/bash exists (or is symlinked appropriately).
73 lines
2.2 KiB
Bash
Executable File
73 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# environment variables passed on docker-compose
|
|
export NAME=seafile7
|
|
export MYSQL_ROOT_PASSWORD=pixenij4zacoguq0kopamid6
|
|
export SEAFILE_ADMIN_EMAIL=seafile@rclone.org
|
|
export SEAFILE_ADMIN_PASSWORD=pixenij4zacoguq0kopamid6
|
|
export SEAFILE_IP=127.0.0.1
|
|
export SEAFILE_PORT=8087
|
|
export SEAFILE_TEST_DATA=${SEAFILE_TEST_DATA:-/tmp/seafile-test-data}
|
|
export SEAFILE_VERSION=latest
|
|
|
|
# make sure the data directory exists
|
|
mkdir -p ${SEAFILE_TEST_DATA}/${NAME}
|
|
|
|
# docker-compose project directory
|
|
COMPOSE_DIR=$(dirname "$0")/seafile
|
|
|
|
start() {
|
|
docker-compose --project-directory ${COMPOSE_DIR} --project-name ${NAME} --file ${COMPOSE_DIR}/docker-compose.yml up -d
|
|
|
|
# wait for Seafile server to start
|
|
seafile_endpoint="http://${SEAFILE_IP}:${SEAFILE_PORT}/"
|
|
wait_seconds=1
|
|
echo -n "Waiting for Seafile server to start"
|
|
for iterations in `seq 1 60`;
|
|
do
|
|
http_code=$(curl -s -o /dev/null -L -w '%{http_code}' "$seafile_endpoint" || true;)
|
|
if [ "$http_code" -eq 200 ]; then
|
|
echo
|
|
break
|
|
fi
|
|
echo -n "."
|
|
sleep $wait_seconds
|
|
done
|
|
|
|
# authentication token answer should be like: {"token":"dbf58423f1632b5b679a13b0929f1d0751d9250c"}
|
|
TOKEN=`curl --silent \
|
|
--data-urlencode username=${SEAFILE_ADMIN_EMAIL} -d password=${SEAFILE_ADMIN_PASSWORD} \
|
|
http://${SEAFILE_IP}:${SEAFILE_PORT}/api2/auth-token/ \
|
|
| sed 's/^{"token":"\(.*\)"}$/\1/'`
|
|
|
|
# create default library
|
|
curl -X POST -H "Authorization: Token ${TOKEN}" "http://${SEAFILE_IP}:${SEAFILE_PORT}/api2/default-repo/"
|
|
|
|
echo _connect=${SEAFILE_IP}:${SEAFILE_PORT}
|
|
echo type=seafile
|
|
echo url=http://${SEAFILE_IP}:${SEAFILE_PORT}/
|
|
echo user=${SEAFILE_ADMIN_EMAIL}
|
|
echo pass=$(rclone obscure ${SEAFILE_ADMIN_PASSWORD})
|
|
echo library=My Library
|
|
}
|
|
|
|
stop() {
|
|
if status ; then
|
|
docker-compose --project-directory ${COMPOSE_DIR} --project-name ${NAME} --file ${COMPOSE_DIR}/docker-compose.yml down
|
|
fi
|
|
}
|
|
|
|
status() {
|
|
if docker ps --format "{{.Names}}" | grep ^${NAME}_seafile_1$ >/dev/null ; then
|
|
echo "$NAME running"
|
|
else
|
|
echo "$NAME not running"
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
. $(dirname "$0")/run.bash
|