Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheNamelessWonderer <56267607+TheNamelessWonderer@users.noreply.github.com>2021-12-20 00:40:42 +0300
committerTheNamelessWonderer <email@example.com>2021-12-21 13:36:10 +0300
commit6fc2c883384ca27875b83a4c15d17517fc7685a7 (patch)
tree0df0ff21f81455fd3a25a67d79390e630a97c284 /scripts
parent201dc2ea5b3ef2a69876f2dd81afa7d35e982f0e (diff)
DOCS(docker): Docker compose
Diffstat (limited to 'scripts')
-rw-r--r--scripts/docker-compose.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/docker-compose.yml b/scripts/docker-compose.yml
new file mode 100644
index 000000000..2e9af0d27
--- /dev/null
+++ b/scripts/docker-compose.yml
@@ -0,0 +1,11 @@
+version: '3'
+services:
+ mumble-server:
+ build: github.com/mumble-voip/mumble#master
+ container_name: mumble-server
+ ports:
+ - 64738:64738
+ volumes:
+ - ./murmur.ini:/etc/murmur/murmur.ini
+ - ./data:/var/lib/murmur/
+ restart: always