Updated docs.

This commit is contained in:
Daniel Ceregatti 2022-03-26 16:49:38 -07:00
parent 164d5b41d6
commit fb23bd2196

View file

@ -48,7 +48,7 @@ account, entering the password will trigger the sending of an email with the cod
until the code is entered. until the code is entered.
The credentials will be managed by [SteamCMD](https://developer.valvesoftware.com/wiki/SteamCMD) and stored in the The credentials will be managed by [SteamCMD](https://developer.valvesoftware.com/wiki/SteamCMD) and stored in the
docker volume. All subsequent SteamCMD command will use the cached credentials. so this process does not need to be docker volume. All subsequent SteamCMD commands will use the cached credentials. so this process does not need to be
repeated unless the session expires or the docker volume is deleted. repeated unless the session expires or the docker volume is deleted.
Run the command again to manage the login. See [Manage](#manage). Run the command again to manage the login. See [Manage](#manage).
@ -65,32 +65,37 @@ docker-compose logs -f main
## Manage ## Manage
The management commands many be run while the server is up. YMMV
### RCON ### RCON
Show the current `beserver_x64.cfg` file: Show the current Battle Eye configuration file (Derived from `files/beserver_x64.cfg`):
``` ```
docker-compose run --rm main rcon show docker-compose run --rm main dayzserver rcon show
``` ```
Reset the RCON password: Reset the RCON password in the Battle Eye configuration file:
``` ```
docker-compose run --rm main rcon reset docker-compose run --rm main dayzserver rcon reset
``` ```
### Restart ### Restart
Restarts the server. If it's not running, does nothing.
``` ```
docker-compose run --rm main restart docker-compose run --rm main dayzserver restart
```
### Stop
Stops the server. If it's not running, does nothing.
```
docker-compose run --rm main dayzserver stop
``` ```
### Update the DayZ server files ### Update the DayZ server files
``` ```
docker-compose run --rm main update docker-compose run --rm main dayzserver update
``` ```
### Workshop ### Workshop
WIP WIP
``` ```
docker-compose run --rm main workshop docker-compose run --rm main dayzserver workshop
``` ```
* Makage -mod= command line
## TODO ## TODO
* RCON to the server? * Makage -mod= command line
* List current rocn password * RCON to the server. Send real time messages to players, such as restart announcements.
* Detect changes to config files and propagate them, with prompting.