Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

lanlords/docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

! This repository is superseded by the lanlords/games repository.

CodeFactor Discord Online MIT License

Lanlords Docker Images

Docker images for the game servers used on Lanlords. At the moment these are not automatically build.

Note: Some games like Call of Duty require game files. These files are not included. For Lanlords specifically, the links to these files can be found in the wiki.

Game Image
Battlefield 2 lanlords/bf2
Battlefield 1942 lanlords/bf1942
Battlefield 2142 lanlords/bf2142
Battalion 1944 lanlords/bt1944
Chivalry: Medieval Warfare lanlords/cmw
Call of Duty 2 lanlords/cod2
Call of Duty 4 lanlords/cod4
Call of Duty 5 lanlords/cod5
Counter-Strike: Global Offensive lanlords/csgo
Team Fortress 2 lanlords/tf2

Directories

  • The games directory contains all game server docker image data.
  • The system directory contains all system/infrastructure docker image data.

Development

To locally build the images you will have to cd to the game directory and execute a build, for example:

cd games/cod2
docker build -t cod2:test .

Commands

Run container in the background:

docker run -d -t cod2:test

Run container and start a shell (for debugging):

docker run -ti cod2:test /bin/bash

Open a shell in running container (for debugging):

docker exec -it --user root [container_id] /bin/bash