Merge pull request #76 from joedwards32/70-unable-to-set-sv_cheats-to-true-in-cs2-docker-container
Add support for enabling/disabling cheats
This commit is contained in:
commit
9aa30b2cfa
5 changed files with 5 additions and 0 deletions
|
@ -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_SERVER_HIBERNATE=0 (Put server in a low CPU state when there are no players.
|
CS2_SERVER_HIBERNATE=0 (Put server in a low CPU state when there are no players.
|
||||||
0 - hibernation disabled, 1 - hibernation enabled
|
0 - hibernation disabled, 1 - hibernation enabled
|
||||||
n.b. hibernation has been observed to trigger server crashes)
|
n.b. hibernation has been observed to trigger server crashes)
|
||||||
|
|
|
@ -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_SERVER_HIBERNATE=0 \
|
CS2_SERVER_HIBERNATE=0 \
|
||||||
CS2_PORT=27015 \
|
CS2_PORT=27015 \
|
||||||
|
|
|
@ -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_HIBERNATE}}/${CS2_SERVER_HIBERNATE}/g" \
|
-e "s/{{SERVER_HIBERNATE}}/${CS2_SERVER_HIBERNATE}/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" \
|
||||||
|
|
|
@ -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
|
||||||
sv_hibernate_when_empty {{SERVER_HIBERNATE}} // Disable server hibernation
|
sv_hibernate_when_empty {{SERVER_HIBERNATE}} // Disable server hibernation
|
||||||
|
|
||||||
// Passwords
|
// Passwords
|
||||||
|
|
|
@ -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_SERVER_HIBERNATE=0 # (Put server in a low CPU state when there are no players. 0 - hibernation disabled, 1 - hibernation enabled)
|
- CS2_SERVER_HIBERNATE=0 # (Put server in a low CPU state when there are no players. 0 - hibernation disabled, 1 - hibernation enabled)
|
||||||
- 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.)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue