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.

62 lines
2.1 KiB

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