mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-11-08 20:10:01 +00:00
Added persistent files storage
This commit is contained in:
parent
744ae39d81
commit
f538c89614
1 changed files with 6 additions and 5 deletions
|
@ -8,14 +8,15 @@ if [ -f $VOLUME/ts3server.sqlitedb ]
|
|||
echo "$VOLUME/ts3server.sqlitedb found. Creating Link between host-mounted db-file and ts3-folder."
|
||||
ln -s $VOLUME/ts3server.sqlitedb /opt/teamspeak3-server_linux-amd64/ts3server.sqlitedb
|
||||
fi
|
||||
echo "2. Link the files-folder into the host-mounted volume. TODO Not implemented yet"
|
||||
#ln -s /opt/teamspeak3-server_linux-amd64/files/ /teamspeak3/files/
|
||||
echo "2. Link the files-folder into the host-mounted volume."
|
||||
mkdir -p /teamspeak3/files
|
||||
rm -rf /opt/teamspeak3-server_linux-amd64/files
|
||||
ln -s /teamspeak3/files /opt/teamspeak3-server_linux-amd64/files
|
||||
|
||||
|
||||
echo "3. Starting TS3-Server."
|
||||
echo "Check if ts3server.ini exists in host-mounted volume."
|
||||
if [ -f $VOLUME/ts3server.ini ]
|
||||
then
|
||||
if [ -f $VOLUME/ts3server.ini ]; then
|
||||
echo "$VOLUME/ts3server.ini found. Using ini as config file."
|
||||
echo "HINT: If this ini was transfered from another ts3-install you may want to make sure the following settings are active for the usage of host-mounted volume: (OPTIONAL)"
|
||||
echo "query_ip_whitelist='/teamspeak3/query_ip_whitelist.txt'"
|
||||
|
@ -25,7 +26,7 @@ if [ -f $VOLUME/ts3server.ini ]
|
|||
echo "inifile='/teamspeak3/ts3server.ini'"
|
||||
/opt/teamspeak3-server_linux-amd64/ts3server_minimal_runscript.sh \
|
||||
inifile="/teamspeak3/ts3server.ini"
|
||||
else
|
||||
else
|
||||
echo "$VOLUME/ts3server.ini not found. Creating new config file."
|
||||
/opt/teamspeak3-server_linux-amd64/ts3server_minimal_runscript.sh \
|
||||
query_ip_whitelist="/teamspeak3/query_ip_whitelist.txt" \
|
||||
|
|
Loading…
Reference in a new issue