Skip to content

介绍

一些即时性很强的游戏, 比如打 CS 开黑报点, 需要和朋友在一起玩游戏, 但是又不在一起, 需要长时间语音通话的就可以使用 Mumble 这个软件可以说是 teamspeak 的开源替代品, 功能强大UI简洁, 项目主页

下载客户端

https://www.mumble.info/

client-settings

部署服务端

yaml
services:
    mumble-server:
        image: mumblevoip/mumble-server:latest
        container_name: mumble-server
        hostname: mumble-server
        restart: always
        ports:
            - 64738:64738
            - 64738:64738/udp
        environment:
            MUMBLE_SUPERUSER_PASSWORD: 'super_user_password'

Released under the MIT License.