Files
templates/blueprints/mumble/docker-compose.yml
Muzaffer Kadir YILMAZ be933bdc54 feat: add Mumble voice chat server template (#572)
* feat: add Mumble voice chat server template

- Add Mumble VoIP server blueprint with docker-compose.yml
- Configure environment variables for superuser password, welcome text, and max users
- Add template.toml with auto-generated secure password
- Follow Dokploy best practices (no container_name, proper port format)
- Add Mumble metadata to meta.json with proper tags
- Support for TCP and UDP on port 64738

* Update template.toml

* fix: correct JSON formatting in meta.json for Mumble template entry

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
Co-authored-by: Mauricio Siu <siumauricio@icloud.com>
2025-12-14 23:27:26 -06:00

17 lines
369 B
YAML

services:
mumble-server:
image: mumblevoip/mumble-server:latest
restart: unless-stopped
ports:
- 64738
- 64738/udp
volumes:
- mumble-data:/data
environment:
- MUMBLE_SUPERUSER_PASSWORD=${SUPERUSER_PASSWORD}
- MUMBLE_CONFIG_WELCOMETEXT=${WELCOME_TEXT}
- MUMBLE_CONFIG_USERS=${MAX_USERS}
volumes:
mumble-data: