A fork of https://github.com/mccarrmb/docker-doom with my own improvements
bin | 6 years ago | ||
builder | 6 years ago | ||
config | 7 years ago | ||
iwad | 7 years ago | ||
player | 6 years ago | ||
wad | 6 years ago | ||
.gitignore | 7 years ago | ||
Dockerfile | 6 years ago | ||
README.md | 6 years ago | ||
build-docker-doom.bash | 6 years ago | ||
build-docker-doom.ps1 | 7 years ago | ||
docker-doom.bash | 6 years ago | ||
docker-doom.ps1 | 6 years ago |
A Zandronum server configuration and deployment tool utilizing a Docker-based back-end.
build-docker-doom.sh
docker-doom.sh
A. You can manually edit Dockerfile
, default.cfg
, adminlist.txt
, banlist.txt
, whitelist.txt
, and summon.bash
to include the desired settings... or just hold tight until I get the "Builder" tool completed. Just a heads up: you'll need Ruby version >= 2.5.0 installed to run this tool. I plan on testing this tool on the native Windows version of Ruby as well, so you shouldn't have to do any weird Linux subsystem magic to run it.
A. Good news! There is a PowerShell script included alongside the original Bash scripts. Just make sure your PowerShell environment is configured to run unsigned scripts via the Set-ExecutionPolicy cmdlet. I'm contemplating writing a seperate Dockerfile that will build a genuine Windows container, but that's a ways off.
A. You could totally do that. In fact, there really isn't much of a difference. I prefer to use Docker, though, because it saves me the hassle of trying to write clever UpStart/SystemD/rc.d-type service scripts and jobs. All I have to do is add --restart always
to the run line and the Docker daemon will take care of keeping the servers running. Docker also makes it easier to run simultaneous instances since the network ports only have to be specified at container runtime - making custom config files for each port/instance unnecessary. You are more than welcome to use these resources in building your own non-container server, though. All of the configuration files - save for summon.bash
- are OS agnostic, so you shouldn't have any problems using them on Windows, Linux, or macOS.