Unverified Commit 864403e7 authored by Julian Raufelder's avatar Julian Raufelder Committed by GitHub
Browse files

Add mumble (#27)

* Add mumble

* Add test config for Mumble
parent 9832fd9e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,8 @@ KIBANA_IMAGE_VERSION=
LOGSTASH_IMAGE_VERSION=
MORTY_IMAGE_VERSION=
MORTY_KEY=
MUMBLE_IMAGE_VERSION=
MUMBLE_SUPERUSER_PASSWORD=
NEXTCLOUD_IMAGE_VERSION=
NEXTCLOUD_MYSQL_DATABASE=
NEXTCLOUD_MYSQL_PASSWORD=

mumble/README.md

0 → 100644
+3 −0
Original line number Diff line number Diff line
# Mumble

Mumble is a free, open source, low latency, high quality voice chat application.
+17 −0
Original line number Diff line number Diff line
version: '2'

services:
  mumble:
    image: mumblevoip/mumble-server:${MUMBLE_IMAGE_VERSION:-latest}
    environment:
      - 'MUMBLE_SUPERUSER_PASSWORD=${MUMBLE_SUPERUSER_PASSWORD:-CHANGE_ME}'
    volumes:
      - './mumble/data:/data'
    networks:
      - 'srv'
    ports:
      - '64738:64738'
      - '64738:64738/udp'
    restart: always
    labels:
      - 'traefik.enable=false'
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
@@ -577,6 +577,23 @@ services:
    networks:
      srv: {}
    restart: always
  mumble:
    environment:
      MUMBLE_SUPERUSER_PASSWORD: CHANGE_ME
    image: mumblevoip/mumble-server:latest
    labels:
      traefik.enable: "false"
    networks:
      srv: {}
    ports:
    - published: 64738
      target: 64738
    - protocol: udp
      published: 64738
      target: 64738
    restart: always
    volumes:
    - /home/runner/work/make-my-server/make-my-server/mumble/data:/data:rw
  musicbot:
    image: raiponce/musicbot:0.2.10
    labels: