Skip to content
This repository has been archived by the owner on May 23, 2022. It is now read-only.

gymnae/mumbleserver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Now archived with the availability of an official mumble docker image.

docker-mumble

Docker image for Mumble server. Forked from https://hub.docker.com/r/phlak/mumble/ Maintained and adjusted by Gymnae

Running the container

In order to persist configuration data when upgrading your container you should create a named data volume. This is not required but is highly recommended.

docker volume create --name mumble-data

After the data-only container has been created run your server container with shared volumes from the data-only container:

docker run -d -p 64738:64738 -p 64738:64738/udp -v mumble-data:/etc/mumble --name mumble-server gymnae/mumbleserver
Optional 'docer run' arguments

--restart always - Always restart the container regardless of the exit status. See the Docker restart policies for additional details.

-e SERVERPASSWORD="<password>" - Adds a server password to mumble server on start

Get/set the SuperUser password

After starting your container, you can get the randomly generated SuperUser password with:

docker logs mumble-server 2>&1 | grep "Password for 'SuperUser'"

--- OR ---

Manually set a new SuperUser password with:

docker exec -it mumble-server supw

NOTE: This can be run at any time to update the SuperUser password

Edit the config

Once you have a running container, you can edit the config with:

docker exec -it mumble-server vi /srv/mumble/config.ini

After saving changes, restart your container:

docker restart mumble-server

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Releases

No releases published

Packages

No packages published

Languages

  • Shell 56.3%
  • Dockerfile 43.7%