Mumble docker container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.6 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. docker-mumble
  2. =============
  3. Docker container for Mumble server.
  4. [![](https://badge.imagelayers.io/phlak/mumble:latest.svg)](https://imagelayers.io/?images=phlak/mumble:latest 'Get your own badge on imagelayers.io')
  5. ### Running the container
  6. In order to persist configuration data when upgrading your running server container you should
  7. create a data-only container. This is not required but is _highly_ recommended.
  8. docker create --name mumble-data phlak/mumble echo "Data-only container for Mumble server"
  9. After the data-only container has been created run your server container with shared volumes from
  10. the data-only container:
  11. docker run -d -p 64738:64738 -p 64738:64738/udp --volumes-from mumble-data --name mumble-server phlak/mumble
  12. ##### Optional 'docer run' arguments
  13. `--restart=always` - Always restart the container regardless of the exit status. See the Docker
  14. [restart policies](https://goo.gl/OI87rA) for additional details.
  15. ##### Get/set the SuperUser password
  16. After starting your container, you can get the randomly generated SuperUser password with:
  17. docker logs mumble-server 2>&1 | grep "Password for 'SuperUser'"
  18. **--- OR ---**
  19. Manually set a new SuperUser password with:
  20. docker exec -it mumble-server supw
  21. **NOTE:** This can be run at any time to update the SuperUser password
  22. ##### Edit the config
  23. Once you have a running container, you can edit the config with:
  24. docker exec -it mumble-server vi /srv/mumble/config.ini
  25. After saving changes, restart your container:
  26. docker restart mumble-server
  27. -----
  28. **Copyright (c) 2015 Chris Kankewicz <Chris@ChrisKankiewicz.com>**
  29. Permission is hereby granted, free of charge, to any person obtaining a copy
  30. of this software and associated documentation files (the "Software"), to deal
  31. in the Software without restriction, including without limitation the rights
  32. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  33. copies of the Software, and to permit persons to whom the Software is
  34. furnished to do so, subject to the following conditions:
  35. The above copyright notice and this permission notice shall be included in
  36. all copies or substantial portions of the Software.
  37. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  38. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  39. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  40. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  41. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  42. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  43. THE SOFTWARE.