From 985e584cd2c65d715633955d3ecddb007289f1e7 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 19 Jul 2021 19:10:16 +0600 Subject: [PATCH] Create README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..429bcaf --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# MurmurRPI + +It is docker image for Raspberry PI to launch `Mumble` server. + +## Configuration and environment + +Docker compose configuration: + +```yaml +version: "3.4" + +services: + murmur: + image: insanusmokrassar/murmur + ports: + - "64738:64738" + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - "/path/to/data:/etc/murmur" + - "/path/to/murmur.ini:/etc/murmur.ini" + - "/path/to/lib:/var/lib/murmur" + restart: unless-stopped + +``` + +Here you may read more about [murmur.ini](https://wiki.mumble.info/wiki/Murmur.ini) (including `password`, `database` and other things configuration)