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.

61 lines
1.8 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
9 years ago
9 years ago
9 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. docker-mumble
  2. =============
  3. Docker image for Mumble server.
  4. [![](https://images.microbadger.com/badges/image/phlak/mumble.svg)](http://microbadger.com/#/images/phlak/mumble "Get your own image badge on microbadger.com")
  5. Running the Container
  6. ---------------------
  7. In order to persist configuration data when upgrading your container you should create a named data
  8. volume. This is not required but is _highly_ recommended.
  9. docker volume create --name mumble-data
  10. After the data-only container has been created run your server container with shared volumes from
  11. the data-only container:
  12. docker run -d -p 64738:64738 -p 64738:64738/udp -v mumble-data:/etc/mumble --name mumble-server phlak/mumble
  13. #### Optional 'docker run' arguments
  14. `--restart always` - Always restart the container regardless of the exit status. See the Docker
  15. [restart policies](https://goo.gl/OI87rA) for additional details.
  16. Get/Set the SuperUser Password
  17. ------------------------------
  18. After starting your container, you can get the randomly generated SuperUser password with:
  19. docker logs mumble-server 2>&1 | grep "Password for 'SuperUser'"
  20. **--- OR ---**
  21. Manually set a new SuperUser password with:
  22. docker exec -it mumble-server supw
  23. **NOTE:** This can be run at any time to update the SuperUser password
  24. Edit the Config
  25. ---------------
  26. Once you have a running container, you can edit the config with:
  27. docker exec -it mumble-server vi /etc/mumble/config.ini
  28. After saving changes, restart your container:
  29. docker restart mumble-server
  30. Troubleshooting
  31. ---------------
  32. Please report bugs to the [GitHub Issue Tracker](https://github.com/PHLAK/docker-mumble/issues).
  33. Copyright
  34. ---------
  35. This project is liscensed under the [MIT License](https://github.com/PHLAK/docker-mumble/blob/master/LICENSE).