Mumble docker container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
927 B

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. FROM alpine:3.3
  2. MAINTAINER Chris Kankiewicz <Chris@ChrisKankiewicz.com>
  3. # Define Mumble version
  4. ENV MUMBLE_VERSION 1.2.13
  5. # Create Mumble directories
  6. RUN mkdir -pv /opt/mumble /etc/mumble
  7. # Copy config file
  8. COPY files/config.ini /etc/mumble/config.ini
  9. # Copy SuperUser password update script
  10. COPY files/supw /bin/supw
  11. RUN chmod +x /bin/supw
  12. # Set the bzip archive URL
  13. ENV BZIP_URL https://github.com/mumble-voip/mumble/releases/download/${MUMBLE_VERSION}/murmur-static_x86-${MUMBLE_VERSION}.tar.bz2
  14. # Install dependencies and fetch Mumble bzip archive
  15. RUN apk add --update ca-certificates bzip2 tar wget \
  16. && wget -qO- ${BZIP_URL} | tar -xjv --strip-components=1 -C /opt/mumble \
  17. && apk del ca-certificates bzip2 tar wget && rm -rf /var/cache/apk/*
  18. # Expose ports
  19. EXPOSE 64738 64738/udp
  20. # Set volumes
  21. VOLUME /etc/mumble
  22. # Default command
  23. CMD ["/opt/mumble/murmur.x86", "-fg", "-ini", "/etc/mumble/config.ini"]