Skip to content

Instantly share code, notes, and snippets.

@berend
Created April 17, 2024 16:44
Show Gist options
  • Save berend/c6187fa29e721a0220c77a5063397dac to your computer and use it in GitHub Desktop.
Save berend/c6187fa29e721a0220c77a5063397dac to your computer and use it in GitHub Desktop.
mumble server via docker compose

this is a simple mumble setup.

Change default password, ring up server

$ docker-compose up

Then open mumble app, connect as user SuperUser (case sensitive), do configs, like creating channels

Then you can login as user and register yourself

services:
mumble:
image: mumblevoip/mumble-server:latest
container_name: mumble
hostname: mumble
restart: unless-stopped
user: root
environment:
- MUMBLE_CONFIG_SERVER_PASSWORD=hunter2
- MUMBLE_SUPERUSER_PASSWORD=hunter2
- MUMBLE_CONFIG_database="/data/mumble-server.sqlite"
ports:
- 64738:64738
- 64738:64738/udp
volumes:
- './mumble_data:/data'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment