mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-12-20 14:41:17 +00:00
Update Dockerfile
- Switch to debian as base image - Reduce number of layers - Reduce image size Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
049df5e012
commit
f98fde3d83
2 changed files with 16 additions and 24 deletions
38
Dockerfile
38
Dockerfile
|
@ -1,35 +1,27 @@
|
|||
###############################################
|
||||
# Ubuntu with added Teamspeak 3 Server.
|
||||
# Uses SQLite Database on default.
|
||||
###############################################
|
||||
FROM debian
|
||||
|
||||
# Using latest Ubuntu image as base
|
||||
FROM ubuntu:16.04
|
||||
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
||||
|
||||
MAINTAINER Alex
|
||||
ENV TEAMSPEAK_VERSION=3.0.13.8 \
|
||||
TEAMSPEAK_SHA256=460c771bf58c9a49b4be2c677652f21896b98a021d7fff286e59679b3f987a59
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y wget bzip2 --no-install-recommends \
|
||||
RUN set -ex \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y curl bzip2 --no-install-recommends \
|
||||
&& curl -sSfLo teamspeak3-server_linux-amd64.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 - \
|
||||
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
&& rm teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
&& apt-get purge -y curl bzip2 && apt-get autoremove -y \
|
||||
&& rm -r /var/lib/apt/lists/*
|
||||
|
||||
## Set some variables for override.
|
||||
# Download Link of TS3 Server
|
||||
ENV TEAMSPEAK_VERSION 3.0.13.8
|
||||
ENV TEAMSPEAK_SHA256 460c771bf58c9a49b4be2c677652f21896b98a021d7fff286e59679b3f987a59
|
||||
ADD docker-ts3.sh /opt/docker-ts3.sh
|
||||
|
||||
# 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"]
|
||||
|
||||
# Download TS3 file and extract it into /opt.
|
||||
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_SHA256} *teamspeak3-server_linux-amd64.tar.bz2" | sha256sum -c - \
|
||||
&& tar -C /opt -xjf teamspeak3-server_linux-amd64.tar.bz2 \
|
||||
&& rm teamspeak3-server_linux-amd64.tar.bz2
|
||||
|
||||
ADD /scripts/ /opt/scripts/
|
||||
RUN chmod -R 774 /opt/scripts/
|
||||
|
||||
CMD ["/opt/scripts/docker-ts3.sh"]
|
||||
CMD ["/opt/docker-ts3.sh"]
|
||||
|
||||
# Expose the Standard TS3 port, for files, for serverquery
|
||||
EXPOSE 9987/udp 30033 10011
|
||||
|
|
0
scripts/docker-ts3.sh → docker-ts3.sh
Normal file → Executable file
0
scripts/docker-ts3.sh → docker-ts3.sh
Normal file → Executable file
Loading…
Reference in a new issue