39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
mumble:
|
|
image: mumblevoip/mumble-server:latest
|
|
container_name: mumble-dev-server
|
|
restart: on-failure
|
|
ports:
|
|
- "64738:64738/udp" # Mumble voice port
|
|
- "64738:64738" # Web interface/WebRTC port (optional)
|
|
environment:
|
|
# Basic server settings
|
|
- MUMBLE_SERVER_WELCOME_TEXT=<strong>Welcome to the MumBullet Development Server</strong><br/>This server is for development and testing.
|
|
- MUMBLE_SERVER_NAME=MumBullet Dev Server
|
|
- MUMBLE_LOG_LEVEL=info
|
|
- MUMBLE_SERVER_PASSWORD=devpass
|
|
|
|
# Superuser account
|
|
- SUPERUSER_PASSWORD=devsecret
|
|
|
|
# Channel setup (format: parent/child/grandchild)
|
|
- MUMBLE_CHANNELS=Music,General,Gaming,Music/Subroom1,Music/Subroom2,General/Subroom3
|
|
|
|
# Create registered users - NOTE: User registration must be enabled
|
|
- MUMBLE_SERVER_REGISTER_SELF=1
|
|
- MUMBLE_SERVER_REGISTER_REQUIRED=0
|
|
|
|
# Server settings
|
|
- MUMBLE_SERVER_BANDWIDTH=128000
|
|
- MUMBLE_SERVER_USERS=100
|
|
- MUMBLE_SERVER_ALLOW_HTML=1
|
|
- MUMBLE_SERVER_MESSAGE_LENGTH=5000
|
|
- MUMBLE_SERVER_DEFAULT_CHANNEL=Music
|
|
volumes:
|
|
- mumble-dev-data:/var/lib/mumble-server
|
|
|
|
volumes:
|
|
mumble-dev-data:
|
|
driver: local |