mirror of
https://ceregatti.org/git/daniel/dayzdockerserver.git
synced 2025-05-06 22:31:18 +00:00
22 lines
No EOL
511 B
Markdown
22 lines
No EOL
511 B
Markdown
# DayZDockerServer
|
|
|
|
A Linux DayZ server in a Docker container. Uses a modified version of https://github.com/thelastnoc/dayz-sa_linuxserver
|
|
|
|
### Setup
|
|
|
|
Edit `files/serverDZ.cfg` and set the server name:
|
|
|
|
```
|
|
hostname = "Something other than Server Name"; // Server name
|
|
```
|
|
Optionally edit `files/beserver_x64.cfg` and set the rcon password:
|
|
```
|
|
RConPassword h4CKm3
|
|
```
|
|
### Running
|
|
Build the container, run it, tail the logs:
|
|
```
|
|
docker-compose build
|
|
docker-compose up -d
|
|
docker-compose logs -f dayzserver
|
|
``` |