Initial commit

This commit is contained in:
2018-06-07 14:49:58 +02:00
commit e9ec6fbcab
6 changed files with 199 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM alpine:latest
MAINTAINER Julian Ospald <hasufell@posteo.de>
##### PACKAGE INSTALLATION #####
RUN apk --no-cache add \
bash \
umurmur
################################
COPY ./config/umurmur.conf /etc/umurmur/umurmur.conf
RUN mkdir /umurmurconfig
COPY ./config/channels.conf /umurmurconfig/
COPY ./setup.sh /setup.sh
RUN chmod +x /setup.sh
EXPOSE 64738
CMD /setup.sh && exec /usr/bin/umurmurd -d -c /etc/umurmur/umurmur.conf