-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): add tf2pickup.org connector plugin (#2)
- Loading branch information
1 parent
89c22b2
commit c779e72
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,17 @@ LABEL maintainer="[email protected]" | |
# DM is conflicting with the ready up mode | ||
RUN rm $SERVER_DIR/tf/addons/sourcemod/plugins/soap_{tf2dm,tournament}.smx | ||
|
||
RUN wget https://github.com/tf2pickup-pl/stadium-sm-plugin/raw/master/teams.smx -O $SERVER_DIR/tf/addons/sourcemod/plugins/teams.smx | ||
RUN wget "https://forums.alliedmods.net/attachment.php?attachmentid=188744&d=1618607414" -O system2.zip \ | ||
&& unzip -o system2.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \ | ||
&& rm -f system2.zip \ | ||
&& wget "https://github.com/KyleSanderson/SteamWorks/releases/download/1.2.3c/package-lin.tgz" -O steamworks.tgz \ | ||
&& tar -xf steamworks.tgz --strip-components=1 -C "${SERVER_DIR}/tf/" \ | ||
&& rm -f steamworks.tgz \ | ||
&& wget "https://github.com/tf2pickup-org/connector/releases/download/0.0.1/connector.smx" -O $SERVER_DIR/tf/addons/sourcemod/plugins/connector.smx \ | ||
&& wget "https://github.com/tf2pickup-org/stadium-sm-plugin/raw/master/teams.smx" -O $SERVER_DIR/tf/addons/sourcemod/plugins/teams.smx | ||
|
||
ENV TEAM_SIZE=6 | ||
ENV TF2PICKUPORG_API_ADDRESS= | ||
ENV TF2PICKUPORG_API_KEY= | ||
|
||
COPY server.cfg.template ${SERVER_DIR}/tf/cfg/server.cfg.template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters