mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-12-20 14:41:17 +00:00
Teamspeak-Server v3.1.0
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
5bd264cbd0
commit
3c4c71c65c
2 changed files with 8 additions and 3 deletions
|
@ -2,12 +2,12 @@ FROM debian
|
||||||
|
|
||||||
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
||||||
|
|
||||||
ENV TEAMSPEAK_VERSION=3.0.13.8 \
|
ENV TEAMSPEAK_VERSION=3.1.0 \
|
||||||
TEAMSPEAK_SHA256=460c771bf58c9a49b4be2c677652f21896b98a021d7fff286e59679b3f987a59
|
TEAMSPEAK_SHA256=9f18cff600b9ce82a26ab788633cd5004bbe8c86963507efd3704c085f50a391
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get install -y curl bzip2 --no-install-recommends \
|
&& apt-get install -y curl bzip2 ca-certificates --no-install-recommends \
|
||||||
&& curl -sSfLo teamspeak3-server_linux-amd64.tar.bz2 \
|
&& curl -sSfLo teamspeak3-server_linux-amd64.tar.bz2 \
|
||||||
http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2 \
|
http://dl.4players.de/ts/releases/${TEAMSPEAK_VERSION}/teamspeak3-server_linux_amd64-${TEAMSPEAK_VERSION}.tar.bz2 \
|
||||||
&& echo "${TEAMSPEAK_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
&& echo "${TEAMSPEAK_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
||||||
|
|
|
@ -3,6 +3,11 @@ set -euo pipefail
|
||||||
|
|
||||||
VOLUME=/teamspeak3
|
VOLUME=/teamspeak3
|
||||||
|
|
||||||
|
if [ -e "${VOLUME}/.ts3server_license_accepted" ]; then
|
||||||
|
echo "- Accepting license as you requested"
|
||||||
|
touch /opt/teamspeak3-server_linux_amd64/.ts3server_license_accepted
|
||||||
|
fi
|
||||||
|
|
||||||
echo "- Linking host mounted database..."
|
echo "- 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
|
||||||
|
|
Loading…
Reference in a new issue