mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-11-12 13:52:42 +00:00
Update to 3.0.12.3
This commit is contained in:
parent
0eb32bfa08
commit
dd3002976a
2 changed files with 12 additions and 12 deletions
12
Dockerfile
12
Dockerfile
|
@ -14,17 +14,17 @@ RUN apt-get update \
|
||||||
|
|
||||||
## Set some variables for override.
|
## Set some variables for override.
|
||||||
# Download Link of TS3 Server
|
# Download Link of TS3 Server
|
||||||
ENV TEAMSPEAK_VERSION 3.0.11.4
|
ENV TEAMSPEAK_VERSION 3.0.12.3
|
||||||
ENV TEAMSPEAK_SHA1 09e7fc2cb5dddf84f3356ddd555ad361f5854321
|
ENV TEAMSPEAK_SHA1 d74d60853e6fb41be74d2dc198e37ab776a164fa
|
||||||
|
|
||||||
# Inject a Volume for any TS3-Data that needs to be persisted or to be accessible from the host. (e.g. for Backups)
|
# Inject a Volume for any TS3-Data that needs to be persisted or to be accessible from the host. (e.g. for Backups)
|
||||||
VOLUME ["/teamspeak3"]
|
VOLUME ["/teamspeak3"]
|
||||||
|
|
||||||
# Download TS3 file and extract it into /opt.
|
# Download TS3 file and extract it into /opt.
|
||||||
RUN wget -O teamspeak3-server_linux-amd64.tar.gz http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux-amd64-${TEAMSPEAK_VERSION}.tar.gz \
|
RUN wget -O teamspeak3-server_linux-amd64.tar.bz2 http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2 \
|
||||||
&& echo "${TEAMSPEAK_SHA1} *teamspeak3-server_linux-amd64.tar.gz" | sha1sum -c - \
|
&& echo "${TEAMSPEAK_SHA1} *teamspeak3-server_linux-amd64.tar.bz2" | sha1sum -c - \
|
||||||
&& tar -C /opt -xzf teamspeak3-server_linux-amd64.tar.gz \
|
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
||||||
&& rm teamspeak3-server_linux-amd64.tar.gz
|
&& rm teamspeak3-server_linux-amd64.tar.bz2
|
||||||
|
|
||||||
ADD /scripts/ /opt/scripts/
|
ADD /scripts/ /opt/scripts/
|
||||||
RUN chmod -R 774 /opt/scripts/
|
RUN chmod -R 774 /opt/scripts/
|
||||||
|
|
|
@ -3,13 +3,13 @@ VOLUME=/teamspeak3
|
||||||
|
|
||||||
echo " ----- docker-ts3 ------"
|
echo " ----- docker-ts3 ------"
|
||||||
echo "1. Linking host mounted database"
|
echo "1. Linking host mounted database"
|
||||||
ln -s $VOLUME/ts3server.sqlitedb /opt/teamspeak3-server_linux-amd64/ts3server.sqlitedb
|
ln -s $VOLUME/ts3server.sqlitedb /opt/teamspeak3-server_linux_amd64/ts3server.sqlitedb
|
||||||
|
|
||||||
echo "2. Link the files-folder into the host-mounted volume."
|
echo "2. Link the files-folder into the host-mounted volume."
|
||||||
mkdir -p /teamspeak3/files
|
mkdir -p /teamspeak3/files
|
||||||
if ! [ -L /opt/teamspeak3-server_linux-amd64/files ]; then
|
if ! [ -L /opt/teamspeak3-server_linux_amd64/files ]; then
|
||||||
rm -rf /opt/teamspeak3-server_linux-amd64/files
|
rm -rf /opt/teamspeak3-server_linux_amd64/files
|
||||||
ln -s /teamspeak3/files /opt/teamspeak3-server_linux-amd64/files
|
ln -s /teamspeak3/files /opt/teamspeak3-server_linux_amd64/files
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "3. Starting TS3-Server."
|
echo "3. Starting TS3-Server."
|
||||||
|
@ -22,11 +22,11 @@ if [ -f $VOLUME/ts3server.ini ]; then
|
||||||
echo "logpath='/teamspeak3/logs/'"
|
echo "logpath='/teamspeak3/logs/'"
|
||||||
echo "licensepath='/teamspeak3/'"
|
echo "licensepath='/teamspeak3/'"
|
||||||
echo "inifile='/teamspeak3/ts3server.ini'"
|
echo "inifile='/teamspeak3/ts3server.ini'"
|
||||||
/opt/teamspeak3-server_linux-amd64/ts3server_minimal_runscript.sh \
|
/opt/teamspeak3-server_linux_amd64/ts3server_minimal_runscript.sh \
|
||||||
inifile="/teamspeak3/ts3server.ini"
|
inifile="/teamspeak3/ts3server.ini"
|
||||||
else
|
else
|
||||||
echo "$VOLUME/ts3server.ini not found. Creating new config file."
|
echo "$VOLUME/ts3server.ini not found. Creating new config file."
|
||||||
/opt/teamspeak3-server_linux-amd64/ts3server_minimal_runscript.sh \
|
/opt/teamspeak3-server_linux_amd64/ts3server_minimal_runscript.sh \
|
||||||
query_ip_whitelist="/teamspeak3/query_ip_whitelist.txt" \
|
query_ip_whitelist="/teamspeak3/query_ip_whitelist.txt" \
|
||||||
query_ip_backlist="/teamspeak3/query_ip_blacklist.txt" \
|
query_ip_backlist="/teamspeak3/query_ip_blacklist.txt" \
|
||||||
logpath="/teamspeak3/logs/" \
|
logpath="/teamspeak3/logs/" \
|
||||||
|
|
Loading…
Reference in a new issue