initial version

This commit is contained in:
Robin Appelman 2015-11-21 17:48:47 +01:00
commit ef19b5c5d3
5 changed files with 100 additions and 0 deletions

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
from tf2-base
maintainer Robin Appelman <robin@icewind.nl>
ADD ./maps.sh $SERVER/maps.sh
RUN $SERVER/maps.sh
ADD ./sourcemod.sh $SERVER/sourcemod.sh
RUN $SERVER/sourcemod.sh
ADD ./plugins.sh $SERVER/plugins.sh
RUN $SERVER/plugins.sh
EXPOSE 27015/udp
WORKDIR /home/$USER/hlserver
ENTRYPOINT ["./tf.sh"]
CMD ["+sv_pure", "1", "+mapcycle", "mapcycle_quickplay_payload.txt", "+map", "pl_badwater", "+maxplayers", "24"]