This docker image provides a preconfigured Counter-Strike Source server with several plugins.
The Docker image in the Docker Hub can be found here.
List of used plugins:
- metamod:source v1.10.6
- SourceMod v1.7.3-5275
- Quake Sounds v1.8
- Damage Report/Stats v1.1.13
- MapChooser Extended 1.10.2
The docker container requires some ports to be exposed, therefore a more advanced run command is required.
docker run -d --name css-server-27015 \
-p 27015:27015 -p 27015:27015/udp -p 1200:1200 \
-p 27005:27005/udp -p 27020:27020/udp -p 26901:26901/udp \
-e RCON_PASSWORD=mypassword \
foxylion/steam-css
Due to the linux kernel is caching the udp connection state you have to manually clean the udp connection tracking, before you can immediately reconenct to the server. More details can be found here.
apt-get install conntrack
conntrack -D -p udp
RCON_PASSWORD
is your personal RCON password to authenticate as the administratorCSS_HOSTNAME
is your custom server name shown in the server listCSS_PASSWORD
is the password a user may require to connect, can be left empty
You can mount a directory where the css server should copy all currently installed maps and sounds so you can use the sv_downloadurl
option.
- v /path/to/target:/home/steam/htdocs
-v /path/to/mapcycle.txt:/home/steam/css/cstrike/cfg/mapcycle.txt
To control the SourceMod admins on the server you can use your own admins.cfg or admins_simple.ini file.
-v /path/to/admins_simple.ini:/home/steam/css/cstrike/addons/sourcemod/configs/admins_simple.ini
The default server.cfg can also be overriden, but you can also only override some specific settings, therefore use the following pattern
-v /path/to/my-server.cfg:/home/steam/css/cstrike/cfg/my-server.cfg
Any other configuration file can also be overriden using the same method as above, you must just locate the right file in the docker container. The folder structure is the same as when you install the server locally.