Add support for enabling/disabling cheats

This commit is contained in:
John Edwards 2023-12-31 16:43:39 +00:00
parent 30fb7aa77d
commit af5c45a01e
5 changed files with 5 additions and 0 deletions

View file

@ -51,6 +51,7 @@ Feel free to overwrite these environment variables, using -e (--env):
```dockerfile ```dockerfile
SRCDS_TOKEN="" (Game Server Token from https://steamcommunity.com/dev/managegameservers) SRCDS_TOKEN="" (Game Server Token from https://steamcommunity.com/dev/managegameservers)
CS2_SERVERNAME="changeme" (Set the visible name for your private server) CS2_SERVERNAME="changeme" (Set the visible name for your private server)
CS2_CHEATS=0 (0 - disable cheats, 1 - enable cheats)
CS2_IP="" (CS2 server listening IP address, 0.0.0.0 - all IP addresses on the local machine, empty - IP identified automatically) CS2_IP="" (CS2 server listening IP address, 0.0.0.0 - all IP addresses on the local machine, empty - IP identified automatically)
CS2_PORT=27015 (CS2 server listen port tcp_udp) CS2_PORT=27015 (CS2 server listen port tcp_udp)
CS2_RCON_PORT="" (Optional, use a simple TCP proxy to have RCON listen on an alternative port. CS2_RCON_PORT="" (Optional, use a simple TCP proxy to have RCON listen on an alternative port.

View file

@ -39,6 +39,7 @@ RUN set -x \
FROM build_stage AS bullseye-base FROM build_stage AS bullseye-base
ENV CS2_SERVERNAME="cs2 private server" \ ENV CS2_SERVERNAME="cs2 private server" \
CS2_CHEATS=0 \
CS2_IP=0.0.0.0 \ CS2_IP=0.0.0.0 \
CS2_PORT=27015 \ CS2_PORT=27015 \
CS2_RCON_PORT="" \ CS2_RCON_PORT="" \

View file

@ -34,6 +34,7 @@ fi
# Rewrite Config Files # Rewrite Config Files
sed -i -e "s/{{SERVER_HOSTNAME}}/${CS2_SERVERNAME}/g" \ sed -i -e "s/{{SERVER_HOSTNAME}}/${CS2_SERVERNAME}/g" \
-e "s/{{SERVER_CHEATS}}/${CS2_CHEATS}/g" \
-e "s/{{SERVER_PW}}/${CS2_PW}/g" \ -e "s/{{SERVER_PW}}/${CS2_PW}/g" \
-e "s/{{SERVER_RCON_PW}}/${CS2_RCONPW}/g" \ -e "s/{{SERVER_RCON_PW}}/${CS2_RCONPW}/g" \
-e "s/{{TV_ENABLE}}/${TV_ENABLE}/g" \ -e "s/{{TV_ENABLE}}/${TV_ENABLE}/g" \

View file

@ -1,6 +1,7 @@
// Server Defaults // Server Defaults
hostname "{{SERVER_HOSTNAME}}" // Set server hostname hostname "{{SERVER_HOSTNAME}}" // Set server hostname
sv_cheats {{SERVER_CHEATS}} // Enable or disable cheats
// Passwords // Passwords

View file

@ -7,6 +7,7 @@ services:
# Server configuration # Server configuration
- SRCDS_TOKEN # Game Server Token from https://steamcommunity.com/dev/managegameservers - SRCDS_TOKEN # Game Server Token from https://steamcommunity.com/dev/managegameservers
- CS2_SERVERNAME=changeme # (Set the visible name for your private server) - CS2_SERVERNAME=changeme # (Set the visible name for your private server)
- CS2_CHEATS=0 # (0 - disable cheats, 1 - enable cheats)
- CS2_PORT=27015 # (CS2 server listen port tcp_udp) - CS2_PORT=27015 # (CS2 server listen port tcp_udp)
- CS2_RCON_PORT # (Optional, use a simple TCP proxy to have RCON listen on an alternative port. Useful for services like AWS Fargate which do not support mixed protocol ports.) - CS2_RCON_PORT # (Optional, use a simple TCP proxy to have RCON listen on an alternative port. Useful for services like AWS Fargate which do not support mixed protocol ports.)
- CS2_LAN=0 # (0 - LAN mode disabled, 1 - LAN Mode enabled) - CS2_LAN=0 # (0 - LAN mode disabled, 1 - LAN Mode enabled)