From 7aee391200c7d951eaae799e8c7b952f492409e8 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:22:25 +0100 Subject: [PATCH 1/2] Update mumble to use alpine edge --- voice/mumble/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voice/mumble/Dockerfile b/voice/mumble/Dockerfile index f22b79737..cfac8183c 100644 --- a/voice/mumble/Dockerfile +++ b/voice/mumble/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$TARGETOS/$TARGETARCH alpine:3.16 +FROM --platform=$TARGETOS/$TARGETARCH alpine:edge LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" From 4a27d2895b1e3c3defc913ef6fe868c14c63411e Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:30:39 +0100 Subject: [PATCH 2/2] Print mumble server version --- voice/mumble/entrypoint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/voice/mumble/entrypoint.sh b/voice/mumble/entrypoint.sh index bbafa01eb..281b061b6 100644 --- a/voice/mumble/entrypoint.sh +++ b/voice/mumble/entrypoint.sh @@ -5,10 +5,12 @@ cd /home/container INTERNAL_IP=$(ip route get 1 | awk '{print $(NF-2);exit}') export INTERNAL_IP +# Print the Muble server version +mumble-server --version # Replace Startup Variables MODIFIED_STARTUP=$(echo -e $(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')) echo -e ":/home/container$ ${MODIFIED_STARTUP}" # Run the Server -eval ${MODIFIED_STARTUP} \ No newline at end of file +eval ${MODIFIED_STARTUP}