update README.md

pull/14/head
Michel Pawlak 2022-07-01 10:10:30 +02:00
rodzic 6f40137ca8
commit 305203fe85
1 zmienionych plików z 13 dodań i 4 usunięć

Wyświetl plik

@ -86,10 +86,6 @@ You can specify these environment variables when starting the container using th
$ docker run -e "MUMBLE_CONFIG_SERVER_PASSWORD=123"
```
Note: In the unlikely case where a `<configName>` setting is unknown to the container, startup will fail. The root cause of this error is the fact that
this setting is incorrectly registered in the Mumble server code. You can workaround this error by setting the `MUMBLE_ACCEPT_UNKNOWN_SETTINGS`
environment variable to `true` and spelling `<configName>` exactly as written in the [Murmur.ini](https://wiki.mumble.info/wiki/Murmur.ini) documentation.
### Additional variables
@ -103,6 +99,19 @@ The following _additional_ variables can be set for further server configuration
| `MUMBLE_VERBOSE` | Set to `true` to enable verbose logging in the server |
Note: In the unlikely case where a `<configName>` setting is unknown to the container, startup will fail with the following error.
```
mumble-server | [ERROR]: Unable to find config corresponding to variable "<configName>"
mumble-server exited with code 1
```
The root cause of this error is the fact that this setting is incorrectly registered in the Mumble server code. You can workaround this error by
setting the `MUMBLE_ACCEPT_UNKNOWN_SETTINGS` environment variable to `true` and spelling `<configName>` exactly as written in the
[Murmur.ini](https://wiki.mumble.info/wiki/Murmur.ini) documentation.
## Building the container
After having cloned this repository, you can just run