QuakeLiveDocker/README.md

31 lines
684 B
Markdown
Raw Permalink Normal View History

2022-07-28 00:25:53 +01:00
# QuakeLiveDocker
2022-07-28 01:04:16 +01:00
Dockerised Quake Live server.
Run with the following environment variables:
```
HOSTNAME (default: Quake)
PASSWORD (default: none)
2022-07-31 19:18:14 +01:00
ADMIN_PASSWORD (default: none)
2022-07-28 01:04:16 +01:00
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:
2022-07-31 19:18:14 +01:00
HOSTNAME: 'JackNet'
PASSWORD: 'password123'
ADMIN_PASSWORD: 'superSecurePassword'
```
2022-07-31 19:18:14 +01:00
Mount `/game` if you want to persist the server files. Else, it will download on each launch.