seafile-containerized/seahub/scripts/start.sh

24 lines
796 B
Bash
Raw Normal View History

2021-01-22 21:22:53 +00:00
#!/bin/bash
function start_seahub {
/scripts/create_data_links.sh
echo "{ \"email\": \"${SEAFILE_ADMIN_EMAIL}\",\"password\": \"${SEAFILE_ADMIN_PASSWORD}\"}" | tee /opt/seafile/conf/admin.txt
#/opt/seafile/seafile-server-latest/seahub.sh start
python3 /opt/seafile/seafile-server-latest/check_init_admin.py
python3 /opt/seafile/seafile-server-latest/seahub/manage.py runserver 0.0.0.0:8000
}
2021-01-22 21:22:53 +00:00
function start_socat {
mkdir -p /opt/seafile/seafile-server-latest/runtime
socat -d -d UNIX-LISTEN:/opt/seafile/seafile-server-latest/runtime/seafile.sock,fork TCP:seafile-server:8001,forever,keepalive,keepidle=10,keepintvl=10,keepcnt=2
}
2021-01-22 21:22:53 +00:00
function keep_running {
while true; do
tail -f /dev/null & wait ${!}
done
}
2021-01-22 21:22:53 +00:00
start_socat &
start_seahub &
keep_running