added mutable nickname
This commit is contained in:
Hendrik Schlehlein 2019-02-03 20:08:51 +01:00
commit 1f23290854

View file

@ -12,12 +12,13 @@ docker run -e ts3_ip="ts_ip", ts3_pw="quarry_pw", web_port="port" -d -p 8080:808
ENV: ENV:
```Docker ```Docker
ENV ts3_ip=0.0.0.0 ENV TS3_IP=0.0.0.0
ENV ts3_name=serveradmin ENV TS3_NICKNAME=serveradmin
ENV ts3_pw=f3gWdOU3 ENV TS3_NAME=serveradmin
ENV ts3_port=9987 ENV TS3_PW=f3gWdOU3
ENV ts3_query=10011 ENV TS3_PORT=9987
ENV web_port=8080 ENV TS3_QUERY=10011
ENV WEB_PORT=8080
``` ```
@ -29,6 +30,7 @@ The config file is generated automatically on first startup.
```json ```json
{ {
"user": { "user": {
"nickname": "serveradmin",
"name": "serveradmin", "name": "serveradmin",
"password": "" "password": ""
}, },