Skip to content

frozenfoxx/docker-zandronum-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-zandronum-server

Actions Status

A Docker container for running a Zandronum server.

Docker Hub: https://hub.docker.com/r/frozenfoxx/zandronum-server/

How to Build

To build the default image input the following:

git clone https://github.com/frozenfoxx/docker-zandronum-server.git
cd docker-zandronum-server
docker build -t frozenfoxx/zandronum-server:latest .

If you wish to build WAD files into the container or simply wish to have defaults, include them in the wads directory prior to building.

How to Use this Image

Quickstart

The following will run the latest Zandronum server with a default configuration.

docker run -it \
  --rm \
  -p 10666:10666 \
  -v /Path/To/WADs/:/wads:ro \
  --name=zandronum-server \
  frozenfoxx/zandronum-server:latest

Adding Options

The entrypoint will pass all additional options to the Zandronum server script. To mount an additional WAD file, host a private game, and set developer mode for instance:

docker run -it \
  --rm \
  -p 10666:10666 \
  -v /Path/To/WADs/:/wads:ro \
  -v /Path/To/Other/WADs/:/other_wads:ro \
  --name=zandronum-server \
  frozenfoxx/zandronum-server:latest \
  -private \
  +developer 1 \
  /other_wads/savage.wad

A full list of options and how to enable them is provided on the ZDoom Wiki.

Multiplay

A Multiplay compatible version of this container is also available. For deployment to Multiplay, you will need to follow their Container guildelines.

  • Copy your WAD files into wads.
  • Build the container (docker build -t localhost/zandronum-server:multiplay -f Dockerfile.multiplay .).
  • Authenticate, tag, and push to Multiplay in alignment with their documentation.

Configuration

Environment Variables

  • CONFIG: contents of a game configuration INI file for Zandronum, encoded in base64. If specified it will be loaded when starting the server.

About

Container for running a Zandronum server

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published