parent
2017c62473
commit
39a855e2b0
1 changed files with 49 additions and 13 deletions
@ -1,17 +1,53 @@ |
|||||||
# Docker Doom Server |
# Docker Doom Server |
||||||
|
|
||||||
Specify WAD with the WAD_URL env var |
## Usage |
||||||
|
|
||||||
Enable retro mode by setting the RETRO_MODE env mode to "true". This does the |
``` |
||||||
following: |
docker run --rm -it \ |
||||||
- Disables jumping |
-e IWAD_URL=https://files.jerryaldrichiii.com/public/doom2.wad \ |
||||||
- Disables mouse look |
-e RETRO_MODE=true \ |
||||||
- Disables crouching |
-e ITEM_RESPAWN=true \ |
||||||
- Disables altering FOV |
-e SV_HOSTNAME=doom.yourdomain.com \ |
||||||
- Disables crosshairs |
-p 10666:10666/udp \ |
||||||
- Enables forced weapon switching on pickup |
jerryaldrichiii/doom-server |
||||||
|
``` |
||||||
Enable item (including weapons) respawning by setting the $ITEM_RESPAWN env |
|
||||||
var to true |
Configurables (Set via ENV): |
||||||
|
- IWAD_URL=https://files.jerryaldrichiii/public/doom2.wad - Specify IWAD : |
||||||
|
- RETRO_MODE=true - Enable my idea of retro doom. It does the following: |
||||||
|
- Disables jumping |
||||||
|
- Disables mouse look |
||||||
|
- Disables crouching |
||||||
|
- Disables altering FOV |
||||||
|
- Disables crosshairs |
||||||
|
- Enables forced weapon switching on pickup |
||||||
|
- ITEM_RESPAWN=true - Enable item (including weapons) respawning |
||||||
|
|
||||||
|
## Connecting |
||||||
|
|
||||||
|
Download Zandronum: [https://zandronum.com/download](https://zandronum.com/download) |
||||||
|
|
||||||
|
### Locally (For testing) |
||||||
|
|
||||||
|
- Download the same Doom IWAD that is on the server (Set via IWAD_URL env var) |
||||||
|
- `wget https://files.jerryaldrichiii.com/public/freedm.wad` |
||||||
|
- Connect to the server: |
||||||
|
- `zandronum -iwad /path/to/freedm.wad -connect localhost` |
||||||
|
|
||||||
|
### FreeDM |
||||||
|
|
||||||
|
- Download the same Doom IWAD that is on the server |
||||||
|
- `wget https://files.jerryaldrichiii.com/public/freedm.wad` |
||||||
|
- Connect to the server: |
||||||
|
- `zandronum -iwad /path/to/freedm.wad -connect doom.jerryaldrichiii.com` |
||||||
|
|
||||||
|
### Doom 2 (Shareware) |
||||||
|
|
||||||
|
- Download the same Doom IWAD that is on the server |
||||||
|
- `wget https://files.jerryaldrichiii.com/public/doom2.wad` |
||||||
|
- Connect to the server: |
||||||
|
- `zandronum -iwad /path/to/doom2.wad -connect doom.jerryaldrichiii.com:10667` |
||||||
|
|
||||||
|
## Notes |
||||||
|
|
||||||
See WIP/ for other nearly finished attempts of other servers |
See WIP/ for other nearly finished attempts of other servers |
||||||
|
Loading…
Reference in new issue