Update Dockerfile

This commit is contained in:
devalx 2014-04-11 14:36:03 +02:00
parent 6223531681
commit f5a0ecc1f9

View file

@ -22,15 +22,14 @@ RUN apt-get update && apt-get install -y curl
RUN cd /opt && curl -sL ${TEAMSPEAK_URL} | tar xz
# create symlink for the sqlite db
RUN cd /opt/teamspeak3-server_linux-amd64 && ln -s ts3server.sqlitedb /teamspeak3/ts3server.sqlitedb
RUN cd /teamspeak3 && touch ts3server.sqlitedb
RUN cd /teamspeak3 && ln -s ts3server.sqlitedb /opt/teamspeak3-server_linux-amd64/ts3server.sqlitedb
# symlink for files-dir
RUN cd /opt/teamspeak3-server_linux-amd64 && ln -s files /teamspeak3/files
RUN cd /teamspeak3 && mkdir files && ln -s files /opt/teamspeak3-server_linux-amd64/files
# Use CMD to set some defaults, for example mapping some files/directorys to the injected volume.
CMD ["logpath='/teamspeak3/logs/' licensepath='/teamspeak3/' inifile='/teamspeak3/ts3server.ini' query_ip_whitelist='/teamspeak3/query_ip_whitelist.txt' query_ip_backlist='/teamspeak3/query_ip_blacklist.txt'"]
#CMD ["logpath='/teamspeak3/logs/' licensepath='/teamspeak3/' inifile='/teamspeak3/ts3server.ini' query_ip_whitelist='/teamspeak3/query_ip_whitelist.txt' query_ip_backlist='/teamspeak3/query_ip_blacklist.txt'"]
# Specify an entrypoint because this container should act like a isolated "application" and only serve TS3.
ENTRYPOINT ["/opt/teamspeak3-server_linux-amd64/ts3server_minimal_runscript.sh"]