Update 'README.md'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jack Hadrill 2022-07-28 00:04:16 +00:00
parent d49ef9eb2b
commit 02f64479bf
1 changed files with 29 additions and 1 deletions

View File

@ -1,3 +1,31 @@
# QuakeLiveDocker
Dockerised Quake Live server.
Dockerised Quake Live server.
Run with the following environment variables:
```
HOSTNAME (default: Quake)
GAME_PORT (default: 27960)
RCON_PORT (default: 28960)
PASSWORD (default: none)
RCON_PASSWORD (default: none)
STATS_PASSWORD (default: none)
```
Example `docker-compose.yml` file:
```yml
version: '3'
services:
quakelive:
image: docker.nexus.jacknet.io/jackhadrill/games/quakelive:latest
ports:
- '27960:27960/udp'
- '27960:27960/tcp'
- '28960:28960/tcp'
environment:
- HOSTNAME=JackNet
- PASSWORD=password123
- RCON_PASSWORD=superSecurePassword
```