Based on linuxserver.io baseimage but NOT SUPPORTED by them.
[hub]: https://hub.docker.com/r/zaggash/docker-murmur/
Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.
docker run -d \
--name=<container-name> \
-v /etc/localtime:/etc/localtime:ro \
-v <path to data>:/config \
-e PGID=<gid> \
-e PUID=<uid> \
-p 64738:64738 \
zaggash/docker-murmur
Parameters
-p 64738:64738- the port(s)-v /etc/localtimefor timesync - optional-v /config- The config volume-e PGIDfor GroupID - see below for explanation-e PUIDfor UserID - see below for explanation
Sometimes when using data volumes (-v flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™.
The password is generated on first start. It is written in the logs. To show the logs of a container, you can execute the following command :
docker logs -f container_name
You can edit the config in the /config folder. You need to restart the container to apply the change.
