Skip to content

Commit

Permalink
Merge pull request #225 from parkervcp/mumble
Browse files Browse the repository at this point in the history
Update mumble to use alpine edge
  • Loading branch information
parkervcp committed Mar 16, 2024
2 parents b7509b5 + 4a27d28 commit c26a4d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion voice/mumble/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$TARGETOS/$TARGETARCH alpine:3.16
FROM --platform=$TARGETOS/$TARGETARCH alpine:edge

LABEL author="Michael Parker" maintainer="[email protected]"

Expand Down
4 changes: 3 additions & 1 deletion voice/mumble/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
eval ${MODIFIED_STARTUP}

0 comments on commit c26a4d7

Please sign in to comment.