Skip to content

LanOps/gameserver-l4d2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

L4D2 Docker Image

L4D2 Dedicated Server with Metamod & Sourcemod

Prerequisites

You must create the mount directory and give the container full read and write permissions.

Usage

docker run -it --name "L4D2" 						\
    -v /path/to/local/mount:/home/steam/left4dead2 	\
    -p 27015:27015 									\
    -p 27015:27015/udp 								\
    lanopsdev/gameserver-left4dead2

You can also use the Entrypoint and CMD to customize configs and plugins like you would normally with SRCDS (Port must be changed via Env Variable);

docker run -it --name "L4D2" 						\
    -v /path/to/local/mount:/home/steam/left4dead2 	\
    -p 27015:27015 									\
    -p 27015:27015/udp 								\
    lanopsdev/gameserver-left4dead2 				\
	-insecure                                       \
    +maxplayers ${SRCDS_MAXPLAYERS}                 \
    +sv_pure ${SRCDS_PURE}                          \
    +sv_region ${SRCDS_REGION}                      \
    +sv_lan ${SRCDS_LAN}                            \
    +map ${SRCDS_MAP}                               \
    +ip 0.0.0.0

Environment Variables

  • SRCDS_PORT - Port Number for the server to run on (Default 27015)

TODO

Sort out permissions with /tmp/dump

About

Dockerized L4D2 Server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published