inital commit

This commit is contained in:
Joshua Grimm 2019-10-26 16:20:05 +02:00
parent 1d917da4f5
commit 7056b443d5
5 changed files with 1367 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
from python:3
RUN pip install nbt mcrcon prometheus_client requests
COPY minecraft_exporter.py /
EXPOSE 8001
ENTRYPOINT ["python","minecraft_exporter.py"]