mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
d8561eb442
Using mysql is much better in general. And now that we're using docker, setting up with mysql is as easy as setting up with sqlite3.
33 lines
550 B
Bash
Executable file
33 lines
550 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ $SEAFILE_BOOTSRAP != "" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
dirs=(
|
|
conf
|
|
ccnet
|
|
seafile-data
|
|
seahub-data
|
|
)
|
|
|
|
for d in ${dirs[*]}; do
|
|
src=/shared/seafile/$d
|
|
if [[ -e $src ]]; then
|
|
ln -sf $src /opt/seafile/
|
|
fi
|
|
done
|
|
|
|
if [[ -e /shared/logs/seafile ]]; then
|
|
ln -sf /shared/logs/seafile/ /opt/seafile/logs
|
|
fi
|
|
|
|
if [[ ! -e /opt/seafile/seafile-server-latest ]]; then
|
|
ln -sf /opt/seafile/seafile-server-$SEAFILE_VERSION /opt/seafile/seafile-server-latest
|
|
fi
|
|
|
|
# TODO: create avatars link
|