31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
services:
|
|
mumble:
|
|
image: mumblevoip/mumble-server:latest
|
|
container_name: mumble-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 Test Server</strong><br/>This server is used for integration testing.
|
|
- MUMBLE_SERVER_NAME=MumBullet Test Server
|
|
- MUMBLE_LOG_LEVEL=info
|
|
- MUMBLE_SERVER_PASSWORD=serverpassword
|
|
|
|
# Superuser account
|
|
- SUPERUSER_PASSWORD=supersecret
|
|
|
|
# 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
|