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.

64 lines
2.3 KiB

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