feat(global): add server management webui

This commit is contained in:
Luc Duriez
2020-06-04 17:19:41 +02:00
parent 36efe6c703
commit 7e208e2325
4 changed files with 44 additions and 2 deletions

View File

@@ -1,18 +1,50 @@
# tmserver-docker
Trackmania Nation Forever Docker Server
You can find it on Docker Hub [lduriez/tmserver](https://hub.docker.com/r/lduriez/tmserver)
Only lan dedicated is enable (internet dedicated will be added in future version)
## Exposed ports :
Server management webui provided base on [AdminServ](https://github.com/Chris92de/AdminServ)
## Exposed ports
* 2350/tcp game server port
* 2350/udp game server port
* 3450/tcp p2p game server port
* 5000/tcp xmlrpc remote control port
* 443/tcp server management webui port
## Environment variables
## Environment variables :
* SERVER_NAME name of your server (default is 'Trackmania Server')
* SERVER_DESC description of your server (default is 'This is a Trackmania Server')
* SERVER_SA_PASSWORD superadmin management password (default is 'SuperAdmin')
* SERVER_ADM_PASSWORD admin management password (default is 'Admin')
## Commit convention
Format : `<type>(<portée>): <sujet>`
### type
* `build` : changements qui affectent le système de build ou des dépendances externes (npm, make…)
* `ci` : changements concernant les fichiers et scripts dintégration ou de configuration (Travis, Ansible, BrowserStack…)
* `feat` : ajout dune nouvelle fonctionnalité
* `fix` : correction dun bug
* `perf` : amélioration des performances
* `refactor` : modification qui napporte ni nouvelle fonctionnalité ni damélioration de performances
* `style` : changement qui napporte aucune altération fonctionnelle ou sémantique (indentation, mise en forme, ajout despace, renommante dune variable…)
* `docs` : rédaction ou mise à jour de documentation
* `test` : ajout ou modification de tests
* `revert` : annuler un précédent commit, forme `revert sujet du commit annulé hash du commit annulé`
### sujet
* `add`
* `change`
* `update`
* `remove`
[source](https://buzut.net/git-bien-nommer-ses-commits/)