summaryrefslogtreecommitdiff
path: root/templates/mumble-compose.yml.j2
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2024-07-20 16:20:13 -0500
committerMark Powers <mark@marks.kitchen>2024-07-20 16:20:13 -0500
commitabe2aeceab858d6ad3a838ffe2970a0e9e2a4606 (patch)
tree83a9da03fbf01cbc0faf87f45b4ddd6e7344faf6 /templates/mumble-compose.yml.j2
Initial commitmain
Diffstat (limited to 'templates/mumble-compose.yml.j2')
-rw-r--r--templates/mumble-compose.yml.j239
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/mumble-compose.yml.j2 b/templates/mumble-compose.yml.j2
new file mode 100644
index 0000000..96668d1
--- /dev/null
+++ b/templates/mumble-compose.yml.j2
@@ -0,0 +1,39 @@
+services:
+ mumble-server:
+ image: mumblevoip/mumble-server:latest
+ container_name: mumble-server
+ restart: on-failure
+ ports:
+ - 64738:64738
+ - 64738:64738/udp
+ volumes:
+ - ./data/mumble-data:/data
+ environment:
+{% for key, value in mumble_env.items() %}
+ - {{ key }}={{ value }}
+{% endfor %}
+
+ botamusique:
+ image: azlux/botamusique
+ restart: on-failure
+ environment:
+{% for key, value in mumble_env.items() %}
+ - {{ key }}={{ value }}
+{% endfor %}
+
+ volumes:
+ - ./data/botamusique/music:/music
+ - ./data/botamusique/config:/config
+ cpus: 1
+ labels:
+{% with router_name="bard", host_prefix="bard", container_port="8181" %}
+{% include "util/traefik_labels.txt.j2" %}
+{% endwith %}
+
+ soundboard:
+ build: ./soundboard.git/
+ restart: on-failure
+ labels:
+{% with router_name="soundboard", host_prefix="soundboard", container_port="8080" %}
+{% include "util/traefik_labels.txt.j2" %}
+{% endwith %}