mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-20 22:55:23 +02:00
* 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>
17 lines
369 B
YAML
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:
|