A docker container for running a dedicated Insurgency server.
10K+
A docker container for running a dedicated Insurgency server
Install the latest version of insurgency and create a volume to /opt/insurgency to persist the game files outside of the container.
$ docker run -ti --rm \
-p 27015:27015/udp \
-v $PWD/insurgency/:/opt/insurgency/ \
jacobtomlinson/steam-insurgency:latest \
update
Create a server.cfg file in your game file volume at insurgency/cfg/server.cfg.
Hint: You can generate a config here
Then start the server
$ docker run -ti --rm \
-p 27015:27015/udp \
-v $PWD/insurgency/:/opt/insurgency/ \
jacobtomlinson/steam-insurgency:latest
You can disable check for updates by specifying run -console as the startup command. The default command is updaterun -console which will check for updates and verify game files before starting the server.
$ docker run -ti --rm \
-p 27015:27015/udp \
-v $PWD/insurgency/:/opt/insurgency/ \
jacobtomlinson/steam-insurgency:latest \
run -console
Content type
Image
Digest
Size
96.8 MB
Last updated
over 9 years ago
docker pull jacobtomlinson/steam-insurgency