1
0
mirror of https://bitbucket.org/shim_/mumble.git synced 2019-09-08 21:58:51 +02:00

Initial commit

This commit is contained in:
shim_
2016-05-25 19:31:19 +02:00
committed by Crafter6432
commit 968349cf59
4 changed files with 67 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM alpine:latest
RUN apk update && \
apk add --no-cache wget murmur bash
RUN wget --no-check-certificate -O /usr/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64
COPY murmur.conf /etc/murmur.conf
COPY init.sh /usr/bin/init.sh
RUN chmod +x /usr/bin/dumb-init && \
chmod +r /etc/murmur.conf
VOLUME ["/data"]
EXPOSE 64738 64738/udp
CMD ["/usr/bin/dumb-init","/usr/bin/init.sh"]