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.
 
 
 
Chris Kankiewicz 35e648532e Moved license info to a dedicated LICENSE file 8 years ago
files Use static paths so we can use the exec form of CMD 9 years ago
.dockerignore First commit 9 years ago
Dockerfile v1.2.17 8 years ago
LICENSE Moved license info to a dedicated LICENSE file 8 years ago
README.md Moved license info to a dedicated LICENSE file 8 years ago
build.sh Updated build script 9 years ago

README.md

docker-mumble

Docker image for Mumble server.

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 phlak/mumble

Optional 'docker run' arguments

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

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 /etc/mumble/config.ini

After saving changes, restart your container:

docker restart mumble-server

Troubleshooting

Please report bugs to the GitHub Issue Tracker.

This project is liscensed under the MIT License.