2014-04-10 13:14:12 +00:00
|
|
|
###############################################
|
|
|
|
# Ubuntu with added Teamspeak 3 Server.
|
|
|
|
# Uses SQLite Database on default.
|
|
|
|
###############################################
|
|
|
|
|
|
|
|
# Using latest Ubuntu image as base
|
2014-04-08 18:50:26 +00:00
|
|
|
FROM ubuntu
|
|
|
|
|
2014-04-10 13:14:12 +00:00
|
|
|
MAINTAINER Alex
|
|
|
|
|
|
|
|
## Set some variables for override.
|
2014-04-10 13:26:09 +00:00
|
|
|
# Download Link of TS3 Server
|
2015-09-09 17:53:25 +00:00
|
|
|
ENV TEAMSPEAK_URL http://dl.4players.de/ts/releases/3.0.11.4/teamspeak3-server_linux-amd64-3.0.11.4.tar.gz
|
2014-04-08 18:50:26 +00:00
|
|
|
|
2014-04-10 13:14:12 +00:00
|
|
|
# Inject a Volume for any TS3-Data that needs to be persisted or to be accessible from the host. (e.g. for Backups)
|
2014-04-11 14:09:10 +00:00
|
|
|
VOLUME ["/teamspeak3"]
|
2014-04-10 13:14:12 +00:00
|
|
|
|
2014-04-10 13:35:11 +00:00
|
|
|
# Download TS3 file and extract it into /opt.
|
2014-04-15 12:04:04 +00:00
|
|
|
ADD ${TEAMSPEAK_URL} /opt/
|
2015-09-20 23:58:48 +00:00
|
|
|
RUN tar -C /opt -xzf /opt/teamspeak3-server_linux-amd64-3*.tar.gz
|
2014-04-15 12:59:00 +00:00
|
|
|
|
2014-04-15 12:04:04 +00:00
|
|
|
ADD /scripts/ /opt/scripts/
|
2014-04-15 12:21:14 +00:00
|
|
|
RUN chmod -R 774 /opt/scripts/
|
2014-04-15 12:04:04 +00:00
|
|
|
|
2015-09-20 23:59:32 +00:00
|
|
|
# Cleanup
|
|
|
|
RUN rm -f /opt/teamspeak3-server_linux-amd64-3*.tar.gz
|
|
|
|
|
2014-04-15 12:13:50 +00:00
|
|
|
ENTRYPOINT ["/opt/scripts/docker-ts3.sh"]
|
2014-04-15 12:04:04 +00:00
|
|
|
#CMD ["-w", "/teamspeak3/query_ip_whitelist.txt", "-b", "/teamspeak3/query_ip_blacklist.txt", "-o", "/teamspeak3/logs/", "-l", "/teamspeak3/"]
|
2014-04-08 18:50:26 +00:00
|
|
|
|
2014-04-10 13:26:09 +00:00
|
|
|
# Expose the Standard TS3 port.
|
2014-04-08 18:50:26 +00:00
|
|
|
EXPOSE 9987/udp
|
2014-09-11 17:29:33 +00:00
|
|
|
# for files
|
|
|
|
EXPOSE 30033
|
|
|
|
# for ServerQuery
|
|
|
|
EXPOSE 10011
|