mirror of
https://codeberg.org/spire/docker-comp-server.git
synced 2026-06-03 18:14:09 +02:00
21 lines
514 B
Docker
21 lines
514 B
Docker
from spiretf/docker-tf2-server
|
|
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
|
|
|
|
ADD ./configs.sh $SERVER/configs.sh
|
|
RUN $SERVER/configs.sh
|
|
|
|
EXPOSE 27015/udp
|
|
EXPOSE 27015/tcp
|
|
|
|
WORKDIR /home/$USER/hlserver
|
|
ENTRYPOINT ["./tf.sh"]
|
|
CMD ["+sv_pure", "1", "+mapcycle", "mapcycle_quickplay_payload.txt", "+map", "pl_badwater", "+maxplayers", "24"]
|