A containerized version of the Mumble VoIP server.
An exemplary docker-compose.yml
is shown below:
---
services:
server:
image: ghcr.io/chrisdeutsch/mumble-server:latest
container_name: mumble-server
restart: unless-stopped
volumes:
- ./config:/config
- ./data:/data
environment:
- TZ=Europe/Berlin
ports:
- "64738:64738/tcp"
- "64738:64738/udp"