Whatbox Logo
Login for certain variables to be updated with your slot's information

Wiki > Murmur

Murmur is the server application for the Mumble voice chat client. The latest version of the server is now just called mumble-server.

Installation

  1. Connect to your slot via SSH

  2. Make a directory for Mumble's server

     mkdir -p ~/mumble ~/mumble/data
    
  3. Create the docker-compose.yml file

     touch ~/mumble/docker-compose.yml
    
  4. Edit the docker-compose.yml file with nano ~/mumble/docker-compose.yml and paste the following text into the file.

     services:
         mumble-server:
             image: mumblevoip/mumble-server:latest
             container_name: mumble-server
             hostname: mumble-server
             restart: on-failure
             ports:
                 - 13203:64738
                 - 13203:64738/udp
             volumes:
                 - /home/user/mumble/data:/data
             environment:
                 - MUMBLE_CONFIG_SERVERPASSWORD=serverpassword
                 - MUMBLE_SUPERUSER_PASSWORD=superuserpassword
    

Make sure to replace the passwords with your own passwords! Save the file with Ctrl+S then exit nano with Ctrl+X

  1. Launch the Docker container

     docker-compose -f ~/mumble/docker-compose.yml up -d
    

You can then access your Mumble server at server.whatbox.ca on port 13203 with the password you set in the docker-compose.yml file.