Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
/ docker-murmur Public archive
forked from fculpo/docker-murmur

A silly docker container for murmur, the mumble server.

Notifications You must be signed in to change notification settings

lauwarm/docker-murmur

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 

Repository files navigation

murmur

Modified from [fculpo/murmur] (https://hub.docker.com/r/fculpo/murmur/)

Description

This is a Docker Container using [Busybox] (https://busybox.net/) and a development snapshot of [Murmur] (https://wiki.mumble.info/wiki/Main_Page).

It's configured to look for the configuration file in /etc/murmur.ini and default db will be at /home/murmur/murmur.sqlite.

Usage

To run the Container without the data being persistent:

$ docker run -d -p 64738:64738 -p 64738:64738/udp lauwarm/murmur

To make the sqlite database persistent:

$ docker run -d -p 64738:64738 -p 64738:64738/udp \
    -v /path/to/data:/home/murmur lauwarm/murmur

To supply your own murmur.ini:

docker run -d -p 64738:64738 -p 64738:64738/udp \
    -v /path/to/murmur.ini:/etc/murmur.ini lauwarm/murmur

Combine both, to make data persistent and supply your own murmur.ini:

docker run -d -p 64738:64738 -p 64738:64738/udp \
    -v /path/to/data:/home/murmur \
    -v /path/to/murmur.ini:/etc/murmur.ini lauwarm/murmur

Important notes

Getting the super-user password

On first run, if you don't already have an existing state database, you'll want to look at the logs for your container to get the super-user password:

$ docker logs murmur 2>&1 | grep Password
<W>2014-07-27 01:41:31.256 1 => Password for 'SuperUser' set to '(mAq3hkwnkD'

Providing your own murmur.ini

If you don't set uname=murmur in your murmur.ini, murmur will run as root and db will be created at /etc/murmur.sqlite

Important notes 2

The official Mumble Project provides a Docker Image

Archived

2022-09-20T15:12:00+00:00

About

A silly docker container for murmur, the mumble server.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 100.0%